I've worked with JQuery to get data from a specific form element when triggered
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.min.js" type="text/javascript"></script>
<script>
$(function() {
$('#select-box-name').change(function(){
$('#div-result').load('run-a-routine.asp?value=' + $('#select-box-name').val());
});
});
</script>
<form id="my-form">
<select id="select-box-name">
<option value="1">Fred Bloggs</option>
</select>
</form>
Is there a way of setting the .change trigger to the form
$('#my-form').change
and using javascript to detect which form element was selected/changed and get its value
formbut yea definitely you can check whether form has been changed or not before doing any operation!