doesnt work on winx64 IE10
The mobile view is broken on IE10. I tested it from the demo page.
ANy idea?
Thx
If you mean the menu items are separated by quite a few pixels, I solved it by specifying the display method for the li element.
.flexnav li { display:block; }
There are quite a few more things that don't work properly though. The first click on every item-with-ul element doesn't initiate the opening animation.
Hi yest that was the main issue on IE. Thanks for the fix. Not sure why it is marked as supported for IE when it's clearly not working as it should.
I guess that's because the extended version actually works fine. The issues are only visible in the compact version... although I'm not sure whether it works on windows phones because I don't own one :-)
Ok i got solution last code with focus on jquery file does that for me its not needed at all when focus someone so i just comment it and menu work same as on other browser
Or use instead of .focus() - .triggerHandler( "focus") and it works too
by the way from jquery site .focus() "Attempting to set focus to a hidden element causes an error in Internet Explorer. Take care to only use .focus() on elements that are visible. To run an element's focus event handlers without setting focus to the element, use .triggerHandler( "focus" ) instead of .focus()."