I am trying to troubleshoot why a simple slide down div isn't working in Safari 6.0.2; Chrome, it works fine.
-
jQuery(document).ready(function() {
jQuery("#contact-btn").click(function() {
if (jQuery("#contact").is(":hidden")) {
jQuery("#contact").slideDown("slow");
} else {
jQuery("#contact").slideUp("slow");
}
});
});
The div is default display:none and slides down when the user clicks #contact-btn.
It's on a wordpress installation running off the Bootstrap framework. All other jQuery works fine, it's just this little bit, and only on Safari. The $ is replaced with jQuery since it's a wordpress installation.
Any help is appreciated!
Thanks,
Bill