$(document).ready(function(){ // Hide Featured Image span in mouse hover $('.featured-image img').hover(function(){ $('.featured-image span').css("display","none"); },function(){ $('.featured-image span').css("display","inline-block"); }); // Make Bootstrap dropdown active in mousehover $(function(){ $('.dropdown').hover(function() { $(this).toggleClass('open'); }); }); })