hi can someone explain why the coding below does not work but it work here but it works here http://jsfiddle.net/CDp8t/7/
<html>
<head>
<title></title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script>
<script type="text/javascript">
$("#example").focus(function() {
var first = $(this).find("option").eq(0);
if(first.val() === "1") {
first.remove();
}
});
</script>
</head>
<body>
<select id="example">
<option value="1">First</option>
<option value="2">Second</option>
<option value="3">Third</option>
</select>
</body>
</html>