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'm creating a mobile site for a client and I need to create a function to show and hide a DIV element when a button(a tag) is pressed. This is my code:

<script type="text/javascript">
$('#wrapper').live( 'pageinit',function(event){
  $("#btnInfo").click(function(){
      $("#pageInfo").toggle();
  });
});
</script>  

What happens is: When the page loads and i press btnInfo, the div shows up, works like it should but then i press on a link to go to the next page but on that page it does not show up anymore, whenever when i go back to the page i loaded at first it still works. I think this is because the page is loaded in AJAX, which i want it to be. I searched for a fix and i found: http://jquerymobile.com/test/docs/api/events.html and jQuery Mobile - binding to pageinit event tried it both, and the alert shows up when i switch pages but the function i wrote does not work

what do i do wrong?

Greetings, Harm.

share|improve this question

2 Answers

The click method needs to be attached via 'live' to the element that is being appended on-the-fly.

$("#btnInfo").live('click',function(){
    $("#pageInfo").toggle();
});

You could also try the delegate method.

share|improve this answer

Try this:

$("#btnInfo").bind('click',function(){
          $("#pageInfo").toggle();
      });
share|improve this answer
Tried that, and it didnt work... Thanks for your help though. Code: $('#wrapper').live( 'pageinit',function(event){ $("#btnInfo").bind('click',function(){ $("#pageInfo").toggle(); }); }); – Hawiak Apr 2 '12 at 13:12

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.