Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Code for Adding Message and Confirmation Boxes Using
JavaScript?

Answer Posted / sivasubramanian.k

<html>
<head>
<script>
function message()
{
var str;
str="Click Ok to continue!!!";
alert(str);
}
function confirmation()
{
var str;
str="Are you sure to delete?Then click Ok or Cancel!!!";
confirm(str);

}
</script>
</head>
<body>
<form>
<h3>Click the button below which shows message box</h3>
<input type="submit" value="Click Me" name="submit"
onClick="return message()">
<h3>Click the button below which shows confirmation box</h3>
<input type="submit" value="Delete" name="delete"
onClick="return confirmation()">

</form>
</body>
</html>

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to create an anonymous function

2078


how to get the User's Time of Day

2054


code to sorting an array of objects

2424


write a code to generate pseudorandom numbes

2302


snippet to prevent submission of form when certain/any validations got failed

1872


code to images to rollover

2313


code to detect versions of different browsers like internet explorer, netscape, mozilla, opera etc

2105


program to bring a window to the front

1970


how to convert between arrays and strings

2689


how to create a Custom Scrollbar

2481


how to create a Draggable element

2355


code to detect availability of cookies

2127


Create a Menu that can be activated while clicking on Right Mouse button

2072


Create a ViewState Property?

2647


code to keep a page Out of the browser history

1991