Hello!
I've got a super simple question. I was to set the value of one drop down list with the contents of another one when it is changed. I've tried this script, but I can't seem to detect the change/blur/click whatever.
Here's what I've got:
$(document).ready(function(){
alert("running"); // Test to see if Javascript is running, and it is
$('.presenter input').change(function () { //also tried $('#q3 input')
alert("still running"); // Script doesn't run this
$('.assign input').val($(this).val());
});
});
Thanks!