:hover issue when mouse moves over an iframe which is inside the div | Internet Explorer

后端 未结 1 702
日久生厌
日久生厌 2020-12-19 21:54

Here is my problem:

I have made a small bar in the left side of the browserwindow #blokje{left:-180px; position:absolute;...}, when use

相关标签:
1条回答
  • 2020-12-19 22:19

    The following should achieve the effect you want. This is based on the linked answer. jQuery:

        if($.browser.msie){
            $("#blokje iframe").on("hover",function(){ 
                $(this).parents("#blokje").toggleClass("hover");
            });
        }
    

    CSS:

    #blokje:hover,#blokje.hover{left:0;}
    
    0 讨论(0)
提交回复
热议问题