4th August, 12:07
13th August, 12:42
Shim, if you need to disable caching or use any other $.ajax specific options, you'll have to use your own $.ajax call in the onRender callback:
JS Code
$('form input[title]')).qtip({
content: 'Loading...',
api: {
onRender: function() {
var self = this;
$.ajax({
url: 'ajax.php',
data: {},
cache: false, // Turn off cache
success: function(content) { self.updateContent(content); }
})
}
}
})
10th August, 08:35
Use Ajaxcode
$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});
$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});
28th October, 08:46
First example is much better.