Your Ad Here

Monday, October 3, 2011

jQuery get select option id

$('#size').change(function(){
   var id = $(this).find(':selected')[0].id;
   $('#changevalue').val(id);
})

No comments:

Post a Comment