jquery toggle calls preventDefault() by default, so the defaults don't work. you can't click a checkbox, you cant click a link etc etc
is it possible to restore the default handler?
|
jquery toggle calls preventDefault() by default, so the defaults don't work. you can't click a checkbox, you cant click a link etc etc is it possible to restore the default handler? |
||||
|
|
In my case:
As seen over here: http://stackoverflow.com/a/1673570/211514 |
|||
|
|
|
I'm not sure you're what you mean: but here's a solution for a similar (and possibly the same) problem... I often use preventDefault() to intercept items. However: it's not the only method of interception... often you may just want a "question" following which behaviour continues as before, or stops. In a recent case I used the following solution:
Basically, the "prevent default" is meant to intercept and do something else: the "confirm" is designed for use in ... well - confirming! |
|||
|
|
|
Its fairly simple Lets suppose you do something like
now to revert it to the original situation, do the below...
via - http://www.bcreatives.com.au/blog/enabledisable-scrolling-in-iphoneipads-safari-browser.html |
|||
|
|
|
its not possible to restore a prevent default but what u can do is trick it :)
If you want to go a step further u can event use the trigger button to trigger an event. |
||||
|
|
in some cases* you can initially *Meaning when you don't mind the event bubbling and you don't use the Also see similar question (also in stack Overflow) or in the case of checkbox you can have something like:
|
||||
|
|