Custom Query (13852 matches)
Results (67 - 69 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#7559 | invalid | Selectors | ||
Description |
This code does not work in IE8, but works in opera and mozilla $("#menu-list .accordion div:eq(2)").text(); |
|||
#7731 | invalid | Uncaught TypeError: Object #<an Object> has no method 'replace' | ||
Description |
Uncaught TypeError: Object #<an Object> has no method 'replace' in line 101 of the minimized version of JQuery 1.4.4 <html> <head> <script src="http://code.jquery.com/jquery-1.4.4.min.js" type="text/javascript"></script> <script> function removeFrame(el) { var parentEl = $(el).parent(); var cols = (parentEl.attr('cols').indexOf(',') > 0); if (!cols && parentEl.attr('rows').indexOf(',') <= 0) return; cols = (cols ? 'cols' : 'rows'); var sizes = parentEl.attr(cols).split(','); sizes[$(el).prevUntil(parentEl).length] = 0; parentEl.attr(cols, sizes.join(',')); } beforeLoadHandler = function(event) { var el = event.target; event.preventDefault(); if (el.nodeName == "FRAME") removeFrame(el); } document.addEventListener("beforeload", beforeLoadHandler, true); </script> </head> <frameset rows="50%,75" border="0" framespacing="0"> <frame name="destframe" src="http://www.google.com/" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0"> <frame src="http://www.jquery.com/" name="bottom" frameborder="0" scrolling="NO" marginwidth="0" marginheight="0" noresize=""> </frameset> </html>
This worked fine in 1.4.2 AFAIK The error occurs in this part of the code: $(el).prevUntil(parentEl) |
|||
#8074 | invalid | Error in acid3 page | ||
Description |
[browser: Chrome 10] The easiest way to reproduce this is to rename the jquery js file to jquery.user.js (e.g. make it look like a userscript for the browser) and then install it. Then visit http://acid3.acidtests.org/ You'll see an error in the console log (occuring 4 times): Uncaught TypeError: Cannot set property 'display' of null I used the latest development build. |