User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T19:48:05Zhttp://stackoverflow.com/feeds/user/95227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1577893/google-chrome-strange-display-of-html/1800581#18005811Answer by unknown (yahoo) for Google Chrome - strange display of htmlunknown (yahoo)2009-11-25T23:10:12Z2009-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 & I stumbled across your question during my search.</p>
http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/783874#78387415Answer by unknown (yahoo) for Is there a case insensitive jQuery :contains selector?unknown (yahoo)2009-04-23T22:49:50Z2009-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())>=0;
};
</code></pre>