I used a plugin called niceform NiceForms and it changes my form elements to <a> and <li> tags. I’m having hard time getting the return value of the selected item.
please see my jsbin here: http://jsbin.com/ufoxuc
$(function(){
$("#gender").change(function () {
alert($(this).val());
});
});
Please help. thanks!
Solution is simple, juste select the child of your select and access to the value
Hope that it helps