$("select").change(function(){
    alert("Selected: " + this.value);
});


Is there any reason why this wouldn't be working on all the selects on
my page.

I create the selects dynamically, but this is up in the $
(document).ready(function() { block of my code.

Reply via email to