Following is my javascript(mootools) code:

$('orderNowForm').addEvent('submit', function(event){
    event.preventDefault();
    allFilled = false;
    $$(".required").each(function(inp){
        if (inp.getValue() != ''){
            allFilled = true;
        }
    });

    if (!allFilled){
        $$(".errormsg").setStyle('display', '');
        return;
    }
    else{
        $$('.defaultText').each(function(input){
            if (input.getValue() == input.getAttribute('title')){
                input.setAttribute('value', '');
            }
        });
    }

    this.send({
        onSuccess: function(){
                $('page_1_table').setStyle('display', 'none');
                $('page_2_table').setStyle('display', 'none');
                $('page_3_table').setStyle('display', '');
    }
        });
});

In all browsers except IE, this works fine. But in IE, this cause error. I have IE8 so while using its javascript debugger, I found out that the 'event' object does not have a 'preventDefault' method which is causing the error and so the form is getting submitted. The method is supported in case of firefox (which I found out using firebug).

Any Help?

link|improve this question

65% accept rate
It does; according to the docs (mootools.net/docs/core/Native/Event#Event:preventDefault) what he has should work: "Event Method: preventDefault - Cross browser method to prevent the default action of the event." – Paolo Bergantino Jun 16 '09 at 10:15
My bad, i deleted my comment, which was "doesn't mootools have a method to stop events?". So there's a problem with mootools on ie8... – Alsciende Jun 16 '09 at 10:17
Can't reproduce this issue. This fiddle "works for me on ie 8" Could you setup a reduced fiddle to show the error? jsfiddle.net – eerne May 24 '11 at 10:04
feedback

4 Answers

up vote 94 down vote accepted

in IE, you can use

event.returnValue = false;

to achieve the same result.

And in order not to get an error, you can test for the existence of preventDefault:

if(event.preventDefault) event.preventDefault();
link|improve this answer
14  
The following code worked for me: if (event.preventDefault) { event.preventDefault(); } else { event.returnValue = false; } – sv_in Jun 16 '09 at 10:32
42  
event.preventDefault ? event.preventDefault() : event.returnValue = false; – mortiy Mar 6 '11 at 13:43
It's worth noting that "event" must be the global event object in IE8. You can't use the event passed into the event handler, like e.preventDefault, it must be event.preventDefault in order for this to work in IE8. – jmort253 Apr 5 at 17:16
event.preventDefault(); stopped working for me in FireFox for some reason, out of the blue. Used mority's code and it worked great. Thanks~ – James Apr 5 at 18:29
feedback

Mootools redefines preventDefault in Event objects. So your code should work fine on every browser. If it doesn't, then there's a problem with ie8 support in mootools.

Did you test your code on ie6 and/or ie7?

The doc says

Every event added with addEvent gets the mootools method automatically, without the need to manually instance it.

but in case it doesn't, you might want to try

new Event(event).preventDefault();
link|improve this answer
There was some problem when wrapping like this also in IE. Oh my God! Why IE? – sv_in Jun 16 '09 at 10:34
new Event(e).stop(); works in IE6 onwards – Dimitar Christoff Jun 26 '09 at 16:14
She doesn't want to stop the event, though, just prevent its default action. – Alsciende Jun 30 '09 at 13:39
feedback

Check this link

http://mootools.net/docs/core/Native/Event#Event:stop

link|improve this answer
feedback

Here's a function I've been testing with jquery 1.3.2 and 09-18-2009's nightly build. Let me know your results with it. Everything executes fine on this end in Safari, FF, Opera on OSX. It is exclusively for fixing a problematic IE8 bug, and may have unintended results:

function ie8SafePreventEvent(e){
    if(e.preventDefault){ e.preventDefault()}
    else{e.stop()};

    e.returnValue = false;
    e.stopPropagation();    
}

Usage:

$('a').click(function(e){
    //Execute code here
    ie8SafePreventEvent(e);                     
    return false;

})  
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.