Forums

Tabbed Forms and IE

mdtechteam-jb 26 Jun, 2014
I followed a few different tutorials and was successful in creating a tabbed form. The form looks great in Chrome and Firefox. However, it completely loses it form within Internet Explorer. I haven't been able to find anything on getting this to work in IE. Any help is appreciated!

Link: http://mcinnisinc.com/application
mdtechteam-jb 26 Jun, 2014
It does work with IE11. None of the other versions I have tested so far work though unfortunately.
GreyHead 27 Jun, 2014
Hi goose,

I checked this in IE11 and in IE11 with IE10 and IE9 emulation - all of those look fine. The tabs do break with IE8 emulation where there is a MooTools error showing up Invalid Argument: File: mootools-core.js, Line: 91, Column: 430 This appears to have something to do with inserting elements but it's not obvious what the cause or fix are.

Bob
mdtechteam-jb 27 Jun, 2014
Answer
Hey GreyHead, thank you for the reply. I was actually able to get it going late last night. It looks like it wasn't a CSS issue after all. When I ran the debugger in IE, I saw it was erroring on formcheck-yui.js with
{if(document.styleSheets[c].href.match(/formcheck\.css$/))

After some Googling, I found this bit of code:
fixIeStuffs:function(){if(ie){var f=new RegExp(


to

fixIeStuffs:function(){if(false){var f=new RegExp(


Once I did that, it started to work!
This topic is locked and no more replies can be posted.