javascript event preventDefault( )

preventDefault( )NN 6 IE n/a DOM 2

Instructs the current event to bypass the normal operation it performs on the node. Once set, the mode cannot be undone for the current event. The following Netscape 6 event listener function for an keypress event allows only numbers to be entered into a text field:

function numsOnly(evt) {
    if (evt.charCode< 48 || evt.charCode > 57) {
        evt.preventDefault( );
    }
} 
 

This method is the equivalent of assigning false to the IE event.returnValue property, or having an event handler evaluate to return false.

 
Parameters

None.

 
Returned Value

None.


803,Nickname,Homepage or email,Comments here,Add comment