I've a huge table with many input fields. For each input field I'd like to
program a Javascript function which checks if the input is correct (e.g.
date in the right format / only numbers / number not below zero / ...) if
the focus leaves the input field. Today I do this with onBlur and it works
quite well.
If you click on the header of the table (href) the corresponding column gets
sorted. If you've entered a wrong input and you click on the header of the
table, the table gets not sorted but you see the alert message 'Wrong numer'
according to my example.
However, this works only with Internet Explorer and Opera. With Mozilla
Firefox you get the alert message 'Wrong numer' but the table also gets
sorted and the input field with the wrong input lost its focus.
Is there any way to prevent Mozilla from executing the href (sort of the
table / in my example jump to
www.google.com) if the input of the input
field is not correct?
Stefan