how to close alert box without clicking ok button ? my ajax function is called only after closing alert box.any chance of closing my alert box automatically after 5 second.any other ways to solve these problem..
thanks in advance...
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
An alert box can't be closed without user action. Why is an alert box being shown if an AJAX function should be called instead? Have you considered other ways of showing a message to the user, e.g. putting it in the web page in a suitably noticeable font?
can anyone say...what other message display box in java script other than alert box?or any other message display box that close in automactically with few mints? if so reply soon..
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
6
posted
0
It is called you would have to code your ow with layers. It is not that hard to do. Here is the basic idea:
Dynamically position a div on the page [position:absolute,top.left,zIndex] Hide/Show it [display:none,block] set Your message innerHTML = "foo"; hide it after set period of time [setTimeout] hide it by a user action [onclick]