aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-01-22 03:25:00 +0000
committerJohn Resig <jeresig@gmail.com>2007-01-22 03:25:00 +0000
commit34c0bed54a5ad812b1f78a85529164e0085f50d7 (patch)
treea714a81c5566cc81335f37c23ad7a9c80c4e78bb
parent6c072457ed36464f7f2bc15128e69206dbac5d24 (diff)
downloadjquery-34c0bed54a5ad812b1f78a85529164e0085f50d7.tar.gz
jquery-34c0bed54a5ad812b1f78a85529164e0085f50d7.zip
Fixed this issue: $("<div>foo\nbar</div>");
-rw-r--r--src/jquery/jquery.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 38253c1f5..f4d2ef728 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -38,7 +38,7 @@ var jQuery = function(a,c) {
// Handle HTML strings
if ( typeof a == "string" ) {
// HANDLE: $(html) -> $(array)
- var m = /^[^<]*(<.+>)[^>]*$/.exec(a);
+ var m = /^[^<]*(<(.|\n)+>)[^>]*$/.exec(a);
if ( m )
a = jQuery.clean( [ m[1] ] );
@@ -1219,6 +1219,7 @@ jQuery.extend({
noConflict: function() {
if ( jQuery._$ )
$ = jQuery._$;
+ return jQuery;
},
// This may seem like some crazy code, but trust me when I say that this