I just finished building a Joomla website for a client and of course on the day of launch I am having a problem with the Chrome browser not closing a specified div on click. I have tested in every other browser and it works fine. Is there any way I could rewrite this code so it would work in Chrome.. and of course all the others?
I'm closing a div that houses a flash animation after some time.
JavaScript:
<script>
$(document).ready(function() {
$("#flashcntr").click(function() {
setTimeout(function() {
$("#flashcntr").addClass("hide");
}, 2000);
});
});
</script>
Style in the head:
<style type="text/css">
.hide { display: none !important;}
</style>
Please help! :) loosing hair :(