is there any way to execute diferente funcs for different elements on the same page?
$('.class1').click(function() {
$.ajax({ url:'pages/page1.php?id1='+this.id,
success:function(data){
$("#Loading").fadeOut('fast'); //hide when data's ready
$("#homeContent").html(data);
} });
});
$('.class2').click(function() {
$.ajax({ url:'pages/page2.php?id2='+this.id,
success:function(data){
$("#Loading").fadeOut('fast'); //hide when data's ready
$("#homeContent").html(data);
} });
});
Im using firebug, and when i do diferent clicks, it stack get requests, like this:
GET http://127.0.0.1/pages/jemissoes.php?id=1 (1st click)
GET http://127.0.0.1/pages/jemissoes.php?id=2 (2nd click)
GET http://127.0.0.1/pages/jemissoes.php?id=2
GET http://127.0.0.1/pages/jemissoes.php?id=3 (3rd click)
GET http://127.0.0.1/pages/jemissoes.php?id=3
GET http://127.0.0.1/pages/jemissoes.php?id=3
Thanks
idmore than once, and there's already a sentajaxrequest, pending response, you want to stop this new one from being sent? – João Silva Sep 9 '12 at 0:43