Hi,
I have select controls on a HTML page and using Jquery to set change event.
But the event fires on the page load and does not fire when I try to change values in the select controls.
Any ideas why?
$(function() {
$('select[id^=Start], select[id^=Finish], select[id^=Lunch]').change(CalculateHours($(this)));
});