I load a form and dynamically populate a select via AJAX from a PHP file. Before implementing the dynamic AJAX populated select, my change function works (it just shows anot
I think the element you are binding to in the line:
$('#ve_categoryNo').change(function() { ...
does not yet exist in the DOM, so the event does not get bound.
Try using the .live function:
$('#ve_categoryNo').live('change', function() { ... });
Or make sure that your DOM elements exist before you try to bind events to them.