FUNCTION
<!DOCTYPE html>
<html>
<head>
<title></title>
<head>
<body>
<script type="text/javascript">
function anu()
{
//pop up
alert("its a pop up");
}
anu();
</script>
</body>
</html>
=========================================================
<!DOCTYPE html>
<html>
<head>
<title></title>
<head>
<body>
<script type="text/javascript">
function anu()
{
//pop up
alert("its a pop up");
}
</script>
<form>
<input type="button" value="click me" onclick="anu()">
</form>
</body>
</html>
No comments:
Post a Comment