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.

I first implemented the following snippet to show a "hi" alert and do a jQuery post at "document ready". This first step worked fine. I then added a couple of lines to execute the block only on-click of a tag. Now the "hi" alert works as expected (only after I click on the link), however the post returns an 'error, the post didn't work' and doesn't complete as expected. To reiterate, if I remove the 2 lines flagged with /*/ below, the code works just fine (immediately after the page loads). Any ideas why?

$(document).ready(function(){
    $('a.postlink').click(function() {    /*** post works if I remove this line ***/
    alert("hi");
    jQuery.post("http://myurl", 
            {registration_id: 'device1', command: 'MESSAGE', message: 'Hello', longMessage: ''},
       function(data) {
         alert("ok");
       })
       .error(function() {
        alert("error, the post didn't work");
        });
    });                                   /*** and this line ***/
});
share|improve this question
1  
Have you tried changing jQuery.post to $.post ? – Zee Tee Jul 6 '12 at 19:20
Yes. Started with the short-form, but later used the fully qualified name to make sure that wasn't the issue. – Sachin Jul 6 '12 at 19:22
Whats in the href section of your <a> tag? – Zee Tee Jul 6 '12 at 19:22
Empty quotes... – Sachin Jul 8 '12 at 13:53

1 Answer

up vote 1 down vote accepted

try event.preventDefault();

<a href="#" class="postlink"></a>

$('a.postlink').click(function(event) { 
   event.preventDefault();
  // ...
})
share|improve this answer
That does it! Would love to know what the cause of the problem was, and why this solves it. Thank you! – Sachin Jul 6 '12 at 19:26
@Sachin you are welcome, "If this method is called, the default action of the event will not be triggered." you can read more about preventDefault here api.jquery.com/event.preventDefault – undefined Jul 6 '12 at 19:29

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.