We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this pluggin throws error when tried to get jsonp with cacheResult=true
eg: var options = { url: 'http://gdata.youtube.com/feeds/api/videos', type: 'get', cache: false, data: { q: 'india', alt: 'json-in-script', 'max-results': 10, format: 5, 'start-index': 1, orderby: 'published' }, dataType: 'jsonp', success: function (data) { if (console) { console.log('data received'); } } };
var someManagedAjax = $.manageAjax.create('someAjaxProfileName', { queue: true, cacheResponse: false,cacheTTL:7000 }); someManagedAjax.add(options);
cacheResponse=true: will throw error cacheResponse= false: would not
The text was updated successfully, but these errors were encountered:
thanks for the bug report
Sorry, something went wrong.
No branches or pull requests
this pluggin throws error when tried to get jsonp with cacheResult=true
eg:
var options = {
url: 'http://gdata.youtube.com/feeds/api/videos',
type: 'get',
cache: false,
data: {
q: 'india',
alt: 'json-in-script',
'max-results': 10,
format: 5,
'start-index': 1,
orderby: 'published'
},
dataType: 'jsonp',
success: function (data) {
if (console) {
console.log('data received');
}
}
};
var someManagedAjax = $.manageAjax.create('someAjaxProfileName', { queue: true, cacheResponse: false,cacheTTL:7000 });
someManagedAjax.add(options);
cacheResponse=true: will throw error
cacheResponse= false: would not
The text was updated successfully, but these errors were encountered: