Vote count:
0
I'm working on a header for site. The problem is that when hovering over the login element the cursor on the search field shows through the panel that has a z-index already. This works fine in every browser, but IE8. Here's my markup and solution. Please help!
Search--> /lotfinder/searchresults.aspx?entry=%%term%%&action=search&searchtype=u&searchFrom=header&searchSubmit=Search %%term%%
$(document).ready(function(){
$(".login").mouseenter(function() {
$("input").hide();
}).mouseleave(function() {
$("input").show();
});
});
Any help would be appreciated. I can't find any solutions online with this exact issue.
asked 1 min ago
show and hide not working in IE8 with mouseenter
Aucun commentaire:
Enregistrer un commentaire