Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
$(document).ready(function() {
$("li #categorii").bind("mouseover", function(){
$(".subbuttons").removeClass("displayNone");
});
$(".subbuttons").bind("mouseleave", function(){
$(".subbuttons").addClass("displayNone");
});
});
<script>
$(document).ready(function(){
$("li#categories").mouseenter(function(){
$("div#allcats").slideDown(1000);
}).mouseleave(function(){
$("div#allcats").slideUp(1000);
});
});
</script>
<div id="allcats" style="display:none;">Categori1 <br> category2<br>...</div>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>