0

As mmenu does not support IE8, I'd like to stop it from doing anything in it. That way I can apply a different menu for IE8 only.

How would I do this?

Thanks

Legin76
  • 492
  • 3
  • 11

1 Answers1

0

I've found the solution for this..

I wrapped it in the following code.

if ((document.documentMode || 100) > 8) {....};

Reference: https://stackoverflow.com/a/2202545/2440296

Community
  • 1
  • 1
Legin76
  • 492
  • 3
  • 11