Here is sample code just to make the point. The onblur event doesn't fire in ie 6, but does fire in firefox. I require the onblur event in the span element as I have a web custom control. Please advise on how to capture onblur for span. I need the onblur for mouse activity as well as for tab movement - hence must have onblur. Thank you for any responses.
<html>
<head>
<script type="text/javascript"></script>
</head>
<body>
<form><span onblur="alert('kjkjk')"><select size=4 ><option>lklklk</option></select></span>
<span><input type=text><select size=4 ><option>lklklk</option></select></span>
</form>
</body>
</html>
<html>
<head>
<script type="text/javascript"></script>
</head>
<body>
<form><span onblur="alert('kjkjk')"><select size=4 ><option>lklklk</option></select></span>
<span><input type=text><select size=4 ><option>lklklk</option></select></span>
</form>
</body>
</html>