Do you use a self closing span? You cannot do that, I experienced similiar crashing.
IE just won't understand <span/> and sees it as an opening tag. Not a reason to crash, but hey, IE is always good for a surprise. Use: <span class="ui-icon ui-icon-seek-next"></span> General rule of thumb in IE: do not use self closing tags except for the ones that are defined in HTML (<img>, <hr>, <br> ...). You're dealing with HTML (text/html) and not XHTML (application/xhtml +xml). --Klaus On 12 Feb., 23:50, Kanzie <[email protected]> wrote: > Ok, update with the culprit line of code for blowing IE up. > It seems the span-tag with the icons in them is not handled gracefully > in IE. I took code from the documentation and only when I removed the > span-element with a image did I get the rendering to work properly in > IE (and avoid the crashes). > > <span class="ui-icon ui-icon-seek-next"/> <- PROBLEM! > > Original problem:http://artist.salzaartistagency.se/bug.php?tab=1 > (WARNING, will crash your IE) > Without the span:http://artist.salzaartistagency.se/ndex.php?tab=1 > > Might be relevant to investigate before release. > > On Feb 11, 9:19 pm, Kanzie <[email protected]> wrote: > > > I have a page with tabs that works fine in webkit-browsers, however in > > IE it freezes and kills the application. I have spent some time in > > #jquery and several people have tried to understand this problem, with > > little success. What we have found so far is that the UI-icon-class > > gets a very high minus-position and the the whole graphics is > > glitching. > > > The biggest problem is that IE gets stuck in an infinite loop and > > crashes when trying to switch between tabs, however no additional > > functionality is performed between the tabs. > > > An example is found athttp://artist.salzaartistagency.se/bug.php?tab=1 > > > When you load this page you see a few input-fields, the text that goes > > with these fields are not visible. The button-icon disappears if you > > move the mouse over the window. If you switch between 1:st and 2:nd > > tab all is well (except more graphical problems), however if you click > > on the 3rd or 4:th tab it crashes. > > > I have no idea where to go next with this. Using the latest version of > > both jQuery 1.3.1 and UI 1.6RC6. > > > Please give me pointers as to how to solve this or even what causes > > the problem. > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
