Javascript – Removing Warning Image

asp.netjavascript

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?

Best Answer

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.