Ok.
html:
<div class="selector">
<select name="something"> //this is what myVar is referring to.
<option>stuff</option>
</select>
</div>
Say I have var:
var myVar = $(".selector").find("[name=something]");
And I want to concatenate with option:selected:
$(myVar here + " option:selected").change(function(){
//do something
});
I can't seem to make this work. Thanks to anyone who can help.