• Resolved rajukunri

    (@rajukunri)


    I am using this plugin and it is working great on all browsers except IE11 or others. Need help ASAP as the client’s site is live.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter rajukunri

    (@rajukunri)

    There are multiple POPUPS but you can try it on LOGIN button in the menu, “open account now” as well.

    Thread Starter rajukunri

    (@rajukunri)

    The error it displays in the console is:

    “Object doesn’t support property or method ‘padStart'”.

    Thread Starter rajukunri

    (@rajukunri)

    I got this issue resolved by adding this script into the Header and Footer.

    <script>
    if (!String.prototype.padStart) {
    String.prototype.padStart = function padStart(targetLength,padString) {
    targetLength = targetLength>>0; //truncate if number or convert non-number to 0;
    padString = String((typeof padString !== ‘undefined’ ? padString : ‘ ‘));
    if (this.length > targetLength) {
    return String(this);
    }
    else {
    targetLength = targetLength-this.length;
    if (targetLength > padString.length) {
    padString += padString.repeat(targetLength/padString.length); //append to original to ensure we are longer than needed
    }
    return padString.slice(0,targetLength) + String(this);
    }
    };
    }
    </script>

    Thanks

    Hello @rajukunri,

    Apologize for the inconvenience and for a delayed response!

    I am not sure about the IE support as Microsoft has stopped it. However, I would suggest you to upgrade the plugin to the latest version (3.0.7).

    Feel free to get back to me, in-case of any query.


    Regards,
    Syed

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Popups are not working on IE’ is closed to new replies.