> the onchange event and it does not seem to work. So is there anyway to > find out what event(s) are fired by the dropdown box so my code works?
if you active the console in firebug you could see anything.. you could always put an alert('hello') in your javascript code > Is it legal to code multiple javascript function calls when an event > fires, by separating them with a semicolon? Please advise. Thanks. > if you have a dropdown, I suggest to you jquery. see http://elegantcode.com/2009/07/01/jquery-playing-with-select-dropdownlistcombobox/ putting in the end of page <script ....> $("#ComboBox").change(function() { alert($("#ComboBox").val()); /* do something here */ }); </script> changing the dropdownlist value you'll see the alert with the selected value. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.