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've got a sub-nav that works using jquery - A user clicks on the top level list item, for instance 'services' which triggers the dropdown. The dropdown toggles via clicking the 'service' link. I've made it so a user can click anywhere on the screen to toggle the dropdown to a closed state. But as the site is responsive i want the user to be able to click (touch) anywhere on the screen to close the dropdown but my problem is that it's not working on the touch devices.

My code ive setup for the document click is:

        $(document).click(function(event) { 

      if ( $(".children").is(":visible")) {
        $("ul.children").slideUp('slow');
      }

    })

  });

I'm assuming document.click might not work on touch devices, and if not, what work-around is there to achieve the same effect?

Thanks

share|improve this question
Try attaching the click event to $('html') or $('body') instead. – millimoose Jul 9 '12 at 14:30
1  
Also, I don't think responsive-design is an appropriate tag here. – millimoose Jul 9 '12 at 14:30

3 Answers

To trigger the function with click or touch, you could change this:

$(document).click( function () {

To this

$(document).on('click touchstart', function () {
share|improve this answer

To apply it everywhere, you could do something like

$('body').on('click', function() {
   if($('.children').is(':visible')) {
      $('ul.children').slideUp('slow');
   }
});
share|improve this answer
I thought this would work fine, however on the iphone / ipad it doesn't seem to work. I'm looking into Jquery mobile but i would like to avoid adding it in – Mat-visual Jul 10 '12 at 13:26
@Mat-visual Take a look at .bind() and .unbind() for click events. I ran into the same problem as well. – Andrew Peacock Jul 10 '12 at 13:35
Yeh i was looking along those lines. i just tried $(document).bind('click', function() { - but still not luck for some odd reason. I must be missing something, perhaps a conflict. Works fine on normal pc browsers though – Mat-visual Jul 10 '12 at 13:43
@Mat-visual I got around it by doing something like function bindTap() { $('element').bind("click", function(e){} ); $("element").click(function(){ //DO SOMETHING $("element").unbind("click"); }); } And then calling the function on a click event somewhere. The problem with .click on iOS is that it unbinds the click event. – Andrew Peacock Jul 10 '12 at 14:37
1  
I think your definitely on to something i will play around, see if i can get it working, thanks, and i will let you know if it's successful. – Mat-visual Jul 11 '12 at 7:58

can you use jqTouch or jquery mobile ? there it's much easier to handle touch events. If not then you need to simulate click on touch device, follow this articles:

iphone-touch-events-in-javascript

A touch demo

More in this thread

share|improve this answer
thanks for this – Mat-visual Jul 10 '12 at 13: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.