Saturday, April 16, 2016

What is the HTML code for a message box?


You can test the below Code:

<body bgcolor="white" text="black" 
onLoad=alert("Your message here")> 


To show an Alert 'onUnload': 

<body bgcolor="white" text="black" 
onUnload=alert("Your message here")> 

To show an Alert on clicking a button: 

<form> 
<input type="button" VALUE="Click Here" onClick="alert('Your message here')"> 
</form>

No comments:

Post a Comment