Click to See Complete Forum and Search --> : javascript page Question


crazybonetk
05-03-2007, 02:11 PM
how do i disable an error message in a javascript page?

please if anyone can help!!

jam
05-03-2007, 02:24 PM
if you're reffering to an alert (a little pop-up box with an ok button in the middle) then you cant really, depends exactly what you're trying to do?, whats the page? etc? lol


more explanation would be good and then i can try help

ricp
05-03-2007, 02:27 PM
fixing the problem would be the most obvious solution.. ;)

to show errors (and equally to hide them) read this: http://faq.ii.no/showerrors

\\.\
05-03-2007, 03:52 PM
Try to control it...try{
// to do something
}catch(e){
// catch any error here
}finally{
// do some stuff to finish off with!
}