Here you can find a number of examples on Java Script.Please find the various kinds of examples listed on the right side of this site. If you don't find anything on Java Script then please write to us or leave a commnet. We are pleased to help and find the solution of your problem.
Showing posts with label confirm message box. Show all posts
Showing posts with label confirm message box. Show all posts

Javascript: Confirm Message



<html>
<head>
<title>Confirm Messge</title>

<script language="javascript">
var x=window.confirm("Are you OK!");
if(x)
{
document.write("<a href='google.htm'>Google Search"+ "</a>");
}

else
{
window.alert("It is Very Bad");
}
</script>

</head>
</html>
Google