I posted this question yesterday: jQuery live check input changes - and I got my answer.
Now I am curious if I have drop-downs, checkboxes and radio buttons, how can I keep track of their change.
This is the current code for country :
<select id="country-list" name="countries">
<option value="xx" selected="">Worldwide</option>
<option value="in">India</option>
<option value="il">Israel</option>
<option value="ru">Russia</option>
<option value="us">United States</option>
</select>
The rest is in this jsfiddle: http://jsfiddle.net/XeG5u/
Thanks!
EDIT: My goal,