How do I access dollarified object's DOM properties without using each()? That is, let's say, I have a select on my page:
<select id="myselect">
<option value="1">1</option>
<option value="2">2</option>
</select>
How can I access its selectedIndex property without resorting to
$("myselect").each(
function(){
this.selectedIndex
}
);
?
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
