I am using this neat script to develop a select menu.
http://exodecreations.com/jQuery/jqDropDown.html#plugin_options
I am using the follow example from the site:
$('#list4').jqDropDown({
optionChanged: function(){alert('option changed...');},
defaultStyle: false
containerName: 'theContainer'
toggleBtnName: 'awesomeToggleClass'
optionListName: 'thisListIsRocking'
});
I am looking for a function on the optionChanged which will allow me to change a php variable based on the value that has been selected.
Any ideas on how to do this?