Write a script that displays a messege in the Status bar in Java.
<html>
<head><title>Status
Bar</title></head>
<script
language="Javascript">
function display()
{
window.status = "Welcome To
Javascript";
}
</script>
<body onLoad="display()">
<h1><b>See the data on the
status bar</b></h1>
</body>
</html>
Comments
Post a Comment