Alert Box

  • Thread starter Thread starter Joey
  • Start date Start date
J

Joey

Can someone tell me how to create a dialog box...aka javascript alert
box to display an *informational* message to the user? The regular
alert box is perfect, except that it shows a Warning icon. I need one
to show a simple "i" or informational icon. I want to do this
javascript, becuase I need to support IE, Firefox, and Safari.

JP
 
Can someone tell me how to create a dialog box...aka javascript alert
box to display an *informational* message to the user? The regular
alert box is perfect, except that it shows a Warning icon. I need one
to show a simple "i" or informational icon. I want to do this
javascript, becuase I need to support IE, Firefox, and Safari.

VBScript's MsgBox supports such icon. You can check in the code, if IE
show MsgBox, for all others - execute js with the alert() function
 
Back
Top