I have a drop down list
<select onchange="alert(this.value);">
<option selected="selected" value="cat">cat</option>
<option value="dog">dog</option>
</select>
I would like to make it so that when the users changes a value then an AJAX call is sent to my MVC controller which then updates the database.
I've done this with forms but never from javascript. Does anyone have an example of how this could be done.
thanks,