Hi,
I am trying to get jsonp to work with Cluetip for cross-browser ajax requests and am running into the following error:
"Uncaught SyntaxError: Unexpected token <",
has anyone been able to get jsonp to work with this? This is what my cluetip call looks like:
$(this).attr("rel",href).cluetip({
width: width + 130,
attribute: 'rel',
showTitle: false,
local: false,
sticky: true,
positionBy: 'fixed',
cursor: 'pointer',
topOffset: 5,
leftOffset: -width,
activation: 'click',
ajaxSettings: {
crossDomain:true,
type: "GET",
dataType: 'jsonp'
},
ajaxProcess: function(data) { //alert('yo')
$(".ui-cluetip-content").html($("#popupTemplate").tmpl(data));
itemInitialize(data);
}