Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Isn't that what you are already doing in the first example? – João Silva Sep 9 '12 at 0:29
Ive updated the code. Joao, It works proper on site, but at same time is wasting data as I see in firebug – user1148875 Sep 9 '12 at 0:35
Do you mean it's firing more times than expected? Your code looks perfectly fine to me. – João Silva Sep 9 '12 at 0:36
yes, its repeating it self , and stacking those GET requests as same as I do some click. – user1148875 Sep 9 '12 at 0:40
But what exactly do you want to do? If someone clicks the same id more than once, and there's already a sent ajax request, pending response, you want to stop this new one from being sent? – João Silva Sep 9 '12 at 0:43
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.