<script>
require(['jquery'],function($){ /*First call this function and after add your jQuery code*/
$( document ).ready(function() {
$(".navigation ul li").hover(function() {
alert("hello");
});
});
});
</script>
require(['jquery'],function($){ /*First call this function and after add your jQuery code*/
$( document ).ready(function() {
$(".navigation ul li").hover(function() {
alert("hello");
});
});
});
</script>
Comments
Post a Comment