Hello, I have a form and I'd like to show a div based on the entered text in a text field. The script I'm using works just fine on my latest version of chrome but it doesn't work on IE or any of my members browswers. What they heck is wrong with the script?
<script>
$('document').ready(function(){
$('#gname').change(function() {
($(this).val() == "NBA 2k10") ?
$('#number').slideDown('fast') : $('#number').hide();
})
});
</script>