Click to See Complete Forum and Search --> : Message Box


spearchucker
03-27-2003, 02:53 PM
What is the syntax for popping up a message box in a browser? I need to search through some javascript code for where I popped up this message box. Im not sure what syntax i used as this was a while ago. What should I search my code for?
Thanks!

SeGamysa
03-27-2003, 03:05 PM
alert("");
is one
window.confirm is another

havik
03-27-2003, 03:06 PM
window.open() opens a window. I'd search for just "window.open" because there are attributes within the paranthesis that may disrupt the search.

alert() opens an alert window. Again, I'd just search for "alert"

Havik