hey, where should I add the JS?
I'm trying to add it inside <script> on html but it's not working,
Thanks.
bernardo0marques (-1) - 5 years ago - Reply -1
script add in footer area
Ex:
<script>
$(document).ready(function () {
$('.navbar-light .dmenu').hover(function () {
$(this).find('.sm-menu').first().stop(true, true).slideDown(150);
}, function () {
$(this).find('.sm-menu').first().stop(true, true).slideUp(105)
});
});
</script>
</body>
</html>
mdwaris198 () - 5 years ago - Reply 0