mirror of
https://github.com/jquery/jquery.git
synced 2026-01-25 21:18:33 -05:00
Fixed issue with comment text being included in .text() results.
This commit is contained in:
5
src/jquery/jquery.js
vendored
5
src/jquery/jquery.js
vendored
@@ -378,8 +378,9 @@ jQuery.fn = jQuery.prototype = {
|
||||
for ( var j = 0; j < e.length; j++ ) {
|
||||
var r = e[j].childNodes;
|
||||
for ( var i = 0; i < r.length; i++ )
|
||||
t += r[i].nodeType != 1 ?
|
||||
r[i].nodeValue : jQuery.fn.text([ r[i] ]);
|
||||
if ( r[i].nodeType != 8 )
|
||||
t += r[i].nodeType != 1 ?
|
||||
r[i].nodeValue : jQuery.fn.text([ r[i] ]);
|
||||
}
|
||||
return t;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user