jQueryObject.text()는 IE 에서 다른 브라우저와는 틀리게 작동하므로 주의가 필요하다. IE에서는 text()를 호출하면 새줄 기호를 모두 무시해버리며, <script> 태그 내의 문자열은 가져올 수 없다. html()을 사용해야만 한다.
jQuery.fn.justOwnText = function() { return $(this) .clone() .children() .remove() .end() .text(); };