Quote:
Originally Posted by thang28101993
P.s: I want to fix this, because some people still use old IE version!
|
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]-->