if ((body).hasClass('dialog-visible')){
  document.body.addEventListener("touchmove", function(e) {
   e.preventDefault(); 
  }, false);
}

I am trying to remove preventDefault(); when the dialog is closed.

link|improve this question
1  
why don't you put a condition on it? – Daniel A. White Nov 30 '11 at 20:07
What are you actually trying to do? Remove one line of code or ??? – UlfR Nov 30 '11 at 20:09
Good question. Android's support for touchmove may be poorly. Without the preventDefault() it's not able to catch long sequences. However say I switch to another site via Ajax and I want to re-enable the default behaviour - what to do? – yoshi Jan 6 at 10:24
feedback

1 Answer

There is no 'opposite' of preventDefault(); However, you can choose nót to call it at any given time you want, by moving the if:

  document.body.addEventListener("touchmove", function(e) {
  if((body).hasClass('dialog-visible')){
       e.preventDefault(); 
  }   
  }, false);

Of course, another option is to use document.body.removeEventListener(function, false), but this means you will have to declare your function somewhere.

link|improve this answer
Thanks mate. It worked!!! I should have thought of that. – user1016277 Nov 30 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

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