views:

37

answers:

2

How to remove The warning image of the alert box in Javascript. I want to delete the warning image from the javascript alert window. Is it Possible?

+4  A: 

Unfortunately, the look-and-feel of the result of an alert() call is browser dependent. Each browser implements it differently.

If you need to change the look of a browser dialog box, you'll have to implement your own. There's a lot of options out there. JQuery UI is a particularly popular one if you happen to be using JQuery.

zombat
+2  A: 

You won't be able to change it. Better use a custom alert box.

jQuery Impromptu

is a nice one with a lot of options

rahul