Hi all, new to jQuery I am having difficulty on the binding concept.
Currently using this function to regenerate a full form based on a PHP script. -- $("select").change(function () { $.get('script.php', {'c': c, 'sc': sc }, function(data) { $('form').html(data); }); return false; }) .change(); -- This works, but I'd like to use some next steps in the newly created selectors. I understand I need to (re)bind these selectors, but am lost on how to achieve that. Anyone? Thanks in advance, Henjo