You are on page 1of 2

Program: Computer Engineering (NBA Accredited)

Practical Exam Winter-2021 Answer Sheet

Name of Student Venu Rachan


Roll No. 19203B0004
Enrollment No 1910900004
Seat No: 115774
Class CO5I-B
Course(Subject) CLIENT-SIDE SCRIPTING
Date 03-01-2022

Experiment Title:
Wrire a program to demonstrate the use of onchange event.

Program Code:

<html>
<head>
<script type="text/javascript">
function highlight(x)
{
x.style.color="blue";
x.style.backgroundColor="pink";
}
</script>
</head>
<body>
<form name="myform" action=" " method="post">
Institute Name:
<input type="text" name="iname" onchange="highlight(this)"/>
<BR>
Program:
<input type="text" name="infotech" onchange="highlight(this)"/>
<br>
<input type="submit" value="submit" name="submit">
</form>
</body>
</html>
1
Program: Computer Engineering (NBA Accredited)
Practical Exam Winter-2021 Answer Sheet

Output:
Paste the screen shot of output here.

SOURCE : W3SCHOOLS HTML EDITOR.

You might also like