hide - Mouseenter not works in jquery -
i have got simple script , cant figure why div doesnt show when hovering it.
$(document).ready(function (){ $(".hidden").hide(); $('.moje').mouseenter(function () { $(".hidden").show("fast"); }); });
you cant find whole setup here https://jsfiddle.net/xbs75yhq/1/
class="moje"
not exist in html!
try using .main
e,g,
$(document).ready(function (){ $(".hidden").hide(); $('.main').mouseenter(function () { $(".hidden").show("fast"); }); });
Comments
Post a Comment