Click here to Skip to main content
16,017,986 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
I have to display alert, even if user have minimize the application window or working in other task like working on word etc. the alert will be in regular interval of time.
Posted
Updated 4-Oct-11 3:36am
v2

Hi,

you can raise alert if user minimize web browser.But it doesn't interrupt system programs or like System popups.javascript cannot raise system programs

So,don't waste your time.

Make it in another way like ...

change title of page in regular intervals or color

same as in gmail.


I hope you understood what I said.


All the Best
 
Share this answer
 
XML
<html>
<head>
<script type="text/javascript">
function show_alert()
{
alert("Project has been add");
}
</script>
</head>
<body>

<input type="button" onclick="show_alert()" value="Save" />

</body>
</html>

or for sample http://www.ajaxcontroltoolkit.com/ConfirmButton/ConfirmButton.aspx[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900