I'd like the class "animated fadeOutDown" to be applied to mydiv "#article" when users click on .article-close
.
I tried the below but without success. Your help would be welcome.
Many thanks.
<script>
$(".article-close").click(function() {
$("#article").css("animated fadeOutDown");
});
</script>