<!DOCTYPE html PUBLIC "- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>jQuery Leveraged OnChange Method</title>
<style type="text/css">
input.dirty {
background-color: #660000 ;
color: #FFFFFF ;
}
</style>
<script type="text/javascript" src="jquery-1.2.6.min.js"></script>
<script type="text/javascript">
$( InitPage );
function InitPage(){
var jInput = $( ":input" );
jInput.change(
function( objEvent ){
$( this ).addClass( "dirty" );
}
);
}
</script>
</head>
<body>
<h1>
jQuery Leverages OnChange Method
</h1>
<form>
<p>
Data Item 1:
<input type="text" id="d1" value="" />
</p>
<p>
Data Item 2:
<input type="text" id="d2" value="" />
</p>
<p>
Data Item 3:
<input type="text" id="d3" value="" />
</p>
</form>
</body>
</html>