jQuery: a few jQuery collections

Posted: June 24th, 2009 | Author: | Filed under: JavaScript | No Comments »

jQuery: Prefetch

Posted: June 11th, 2009 | Author: | Filed under: JavaScript | Tags: | No Comments »
(function($) {
$.ajax({ url:"/js/file1.js", cache:true, dataType:"text" });
$.ajax({ url:"/js/file2.js", cache:true, dataType:"text" });
})(jQuery);