User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:48:05Z http://stackoverflow.com/feeds/user/95227 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1577893/google-chrome-strange-display-of-html/1800581#1800581 1 Answer by unknown (yahoo) for Google Chrome - strange display of html unknown (yahoo) 2009-11-25T23:10:12Z 2009-11-25T23:10:12Z <p>This may be a long shot, but I was seeing similar issues in Chrome because I was using the TinyMCE editor. Something in the standard init() doesn't play well with webkit. (even though I wasn't using the editor in that page, the init was in my header scripts, maybe you have the same?)</p> <p>Work-around here: <a href="http://tinymce.moxiecode.com/punbb/viewtopic.php?pid=65112" rel="nofollow">http://tinymce.moxiecode.com/punbb/viewtopic.php?pid=65112</a> (Unwanted raw html in Safari)</p> <p>Just throwing in my 2¢ as this took me way too long to figure out &amp; I stumbled across your question during my search.</p> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/783874#783874 15 Answer by unknown (yahoo) for Is there a case insensitive jQuery :contains selector? unknown (yahoo) 2009-04-23T22:49:50Z 2009-04-23T22:49:50Z <p>As of jQuery 1.3, this method is deprecated. To get this to work it needs to be defined as a function:</p> <pre><code>jQuery.expr[':'].Contains = function(a,i,m){ return jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())&gt;=0; }; </code></pre>