Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
docs:jquery:quickref [2011/11/08 20:11] – billh | docs:jquery:quickref [2013/02/05 15:06] (current) – billh | ||
---|---|---|---|
Line 4: | Line 4: | ||
$(document.ready(function(){ | $(document.ready(function(){ | ||
// code goes here | // code goes here | ||
+ | }); | ||
+ | |||
+ | // prevent caching ajax requests | ||
+ | $.ajaxSetup({ | ||
+ | cache: false | ||
}); | }); | ||