jquery - how to get value? -
how current selected value of dropdown inside div? divid divcontent , dropdownid country
code follows
<form id="frm1">
both dropdowns ajax-generated based on conditions.
thanks in advance
just use .val()
value of input type element, include <select>
elements. since ids unique can this:
var value = $("#country").val();
Comments
Post a Comment