<select class=”dropdown”>
<option value=”a” attribute=”b“>c</option>
</select>
$(“.dropdown”).live(“change”, function () {
//to get b
var attribute_value= ($(‘option:selected’, this).attr(‘attribute’));
});
<select class=”dropdown”>
<option value=”a” attribute=”b“>c</option>
</select>
$(“.dropdown”).live(“change”, function () {
//to get b
var attribute_value= ($(‘option:selected’, this).attr(‘attribute’));
});
You must be logged in to post a comment.