hello, I'm trying to get the selected option via jQuery everytime I change it, and eventually the value attribute, buy I always have problems with js!!
HTML
<select>
<option value="us">United States</option>
<option value="gb">United Kingdom</option>
<option value="de" selected="selected">Germany</option>
<option value="fr">France</option>
</select>
jQuery
$("select").change (function () {
// what can I do there?
});