aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes java script Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "java script" Watch "java script" New topic
Author

java script

bala manian
Ranch Hand

Joined: Nov 05, 2007
Posts: 40
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
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?


Android appsImageJ pluginsJava web charts
bala manian
Ranch Hand

Joined: Nov 05, 2007
Posts: 40
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
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]

Eric
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56185
    
  13

Please be sure to take the time to compose descriptive subjects for your posts; read this for more information.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: java script
 
Similar Threads
validating user input for number of seats
stop window from closing-urgent
java script
blur in javascript
close alert automatically