Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m having an IE issue as well. The directions on their site are really vague. They should have just said, “Our plugin is free unless anyone using IE is going to use it (unfortunate for you like 60% of internet users), then you’ll need out help to fix it so it actually works.”

    I’m testing it in IE 8 and it doesn’t work.

    I’ve spent 2 days trying to fix it. Nothing. Even consulted my friend, a brilliant programmer… still nothing.

    Hi Manda,

    Did you ever figure this out? I am having trouble with where to place the javascript code. The page https://pixopoint.com/products/suckerfish_css// says at the bottom “Due to the inadequacies of older versions of Internet Explorer, it is advisable to download and integrate the “Suckerfish Javascript for Internet Explorer” code with your site.” That link goes gives you a page with this code:

    function sfHoverEvents(sfEls) {
    var len = sfEls.length;
    for (var i=0; i<len; i++) {
    sfEls[i].onmouseover=function() {
    this.className+=” sfhover”;
    }
    sfEls[i].onmouseout=function() {
    this.className=this.className.replace(” sfhover”, “”);
    }
    }
    }
    function sfHover() {
    var ULs = document.getElementsByTagName(“UL”);
    var len = ULs.length;
    for(var i=0;i<len;i++) {
    if(ULs[i].className.indexOf(“sf-menu”) != -1)
    sfHoverEvents(ULs[i].getElementsByTagName(“LI”));
    }
    }
    if (window.attachEvent) window.attachEvent(“onload”, sfHover);

    >>>>>>
    I tried creating a file suckerfish_ie.js and uploading via FTP into my theme .js folder, and then editing the call script, which I put on my site post.

    Their page said use this:
    <script type=”text/javascript” src=”suckerfish_ie.js”></script>
    <![endif]–>

    I used this on my post:
    <script type=”text/javascript” src=”/wp-content/themes/list-machine-pro/js/suckerfish_keyboard.js”></script>
    <!–[if lte IE 7]>

    It doesn’t work in IE… not sure what version.

    Keegan

Viewing 2 replies - 1 through 2 (of 2 total)