Quote:
Originally Posted by tbworld
I do not use this mod but if it was me: For the 1% of users that use IE7 -- just use an html conditional comment. This will just allow a fallback to the normal vbulletin code for users that use IE7 or less. Just an idea.
Code:
<!--[if lte IE 7]>
<script>
$(".popupmenu").hover(
function () {
$(this).find( '.popupbody' ).show();
},
function () {
$(this).find( '.popupbody' ).hide();
}
);
</script>
<![endif]-->
|
Thanks so much for your idea! I added that script to footer but the issue still appaer!
another idea? Please!
Thanks!