Noget i stil med:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html>
<head>
<title>test</title>
<style type="text/css">
.focused {
border: 1px solid #555;
}
</style>
<script type="text/javascript">
function borderMe(what,on)
{
if ( on )
{
what.className = 'focused';
}
else
{
what.className = '';
}
}
</script>
</head>
<body>
<form>
<input type="text" onfocus="borderMe(this,1)" onblur="borderMe(this,0)" /><br />
<input type="text" onfocus="borderMe(this,1)" onblur="borderMe(this,0)" /><br />
<input type="text" onfocus="borderMe(this,1)" onblur="borderMe(this,0)" /><br />
<input type="text" onfocus="borderMe(this,1)" onblur="borderMe(this,0)" /><br />
<input type="text" onfocus="borderMe(this,1)" onblur="borderMe(this,0)" /><br />
</form>
</body>
</html>