Alert in Javascript

This lesson will help the beginners to handle alerts in JavaScripts

<html>
<head>
<script language=”javascript”>
<!–
function f1()
 {
 alert(“Skill Hut”); // Message ‘Skill Hut’ will be displayed
 }
–>
</SCRIPT>
</head>
<body color=white>
Move your mouse over <a href=”" onMouseover=”f1()”>here</a>
</body>
</html>

Leave a Reply