Once I've fired an evt.preventDefault(), how can I resume defualt actions?

link|improve this question
2  
I think typically your function would run and then the default behavior would run, so you would never call evt.preventDefault() in the first place – Prescott Apr 13 '11 at 15:44
Can you give us an example of what you are trying to do? – Peter Olson Apr 13 '11 at 15:45
1  
Possible duplicate? : stackoverflow.com/questions/1551389/… – Nobita Apr 13 '11 at 15:47
1  
@Nobita - I'm not so sure... that one is specific to jQuery. – gilly3 Apr 13 '11 at 15:54
Wow, thanx for the quick responses! My problem is though, that I'm not the one firing the evt.preventDefault();. I'm running a 3rd party flash application in a lightbox. When I close the lightbox, somehow my mousewheel for page scrolling stops. In doing some research, I found that this flash app disables page scrolling because of a zoom feature. So now I am trying to resume page scrolling once the app is closed. Maybe there is some method I can call to resume mouse wheel event? – Bryan Apr 13 '11 at 15:56
show 3 more comments
feedback

5 Answers

I would suggest the following pattern:

document.getElementById("foo").onsubmit = function(e) {
    if (document.getElementById("test").value == "test") {
        return true;
    } else {
        e.preventDefault();
    }
}

<form id="foo">
    <input id="test"/>
    <input type="submit"/>
</form>

...unless I'm missing something.

http://jsfiddle.net/DdvcX/

link|improve this answer
feedback

Have you looked at this question & answer? How to reenable event.preventDefault?

link|improve this answer
feedback

As per commented by @Prescott, the opposite of:

evt.preventDefault();

Could be:

Essentially equating to 'do default', since we're no longer preventing it.

Otherwise I'm inclined to point you to the answers provided by another comments and answers:

how to enable default after event.preventDefault()?

How to reenable event.preventDefault?

Note that the second one has been accepted with an example solution, given by redsquare (posted here for a direct solution in case this isn't closed as duplicate):

$('form').submit( function(ev) {
     ev.preventDefault();
     //later you decide you want to submit
     $(this).unbind('submit').submit()
});
link|improve this answer
feedback

I supose the "opposite" would be to simulate an event. You could use .createEvent()

Following Mozilla's example:

function simulateClick() {
  var evt = document.createEvent("MouseEvents");
  evt.initMouseEvent("click", true, true, window,
    0, 0, 0, 0, 0, false, false, false, false, 0, null);
  var cb = document.getElementById("checkbox"); 
  var canceled = !cb.dispatchEvent(evt);
  if(canceled) {
    // A handler called preventDefault
    alert("canceled");
  } else {
    // None of the handlers called preventDefault
    alert("not canceled");
  }
}

Ref: document.createEvent


jQuery has .trigger() so you can trigger events on elements -- sometimes useful.

$('#foo').bind('click', function() {
      alert($(this).text());
});

$('#foo').trigger('click');
link|improve this answer
feedback
function(e){ e.preventDefault();

and its opposite

function(e){ return true; }

cheers!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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