I have the following JavaScript working in IE, but not on Chrome and Firefox. Here is the code:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#applicationSelect').change(function() {
document.getElementById('dropdown').value = "APPLICATION";
});
});
</script>
<input type="hidden" name="dropdown" value="" />
When I look in Firebug, the code errs:
document.getElementById("dropdown") is null
document.getElementById('dropdown').value = "APPLICATION";
I need your advice. Thank you in advance.
dropdown?? – Sunil Kumar B M Feb 16 '12 at 7:48#applicationSelectand#dropdown. – Stefan Feb 16 '12 at 7:48