If I have a regular javascript alert() in chrome browser 12.0.742.112
This should alert it, correct?
I’m testing something is all browsers and I get the alert pop-up notification in everything but chrome.
Is there something I have to turn on?
edit…
Here is the code…
alert();
it is in a regular *.js file.
Javascript is not turned of because the javascript is working on the page.
What is most likely happening is that you have a line of code that doesn’t work in Chrome, causing it to throw an exception and never hit your alert.
In the latest Dev version of Chrome (14),
alert()should showundefined.