It seems that either I'm doing something horribly wrong or something
because everytime I do an Ajax call using $.load() it causes a double
query on the page.
example:
$("div#example a").click(function(){
$.ajax_uri = this.href;
$("div#sidebar").fade_in(300,function(){
return $("di
jQuery.fn.extend({
fade_in:function(speed,callback){
return $(this).animate({opacity:0},speed,callback);
},
fade_out:function(speed,callback){
return $(this).animate({opacity:1},speed,callback);
},
toggle_fade:function(speed,c
2 matches
Mail list logo