I have the following code which works fine in fire fox but in chrome it will hide the div but when i choose free it doesnt show it again, any ideas?
Code:<label for="ax_type"> Type</label> <select name="type" id="type"> <option value="free">Free</option> <option value="premium">Premium</option> </select> <script type="text/javascript"> jQuery(function($) { $('#ax_type').change(function(){ if ( $(this).val() == "free" ) { $('.submit_right').show(); } else { $('.submit_right').hide(); } }); }); </script>


Reply With Quote



Bookmarks