From 05930c5a0d667c024c9acd0d087be846990fdcea Mon Sep 17 00:00:00 2001 From: David Serduke Date: Fri, 21 Dec 2007 05:47:33 +0000 Subject: [PATCH] Fixed #2084 by added embed to the list of elements where it is ok to have self closing xhtml. --- src/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.js b/src/core.js index 10db3ed..b5a1c70 100644 --- a/src/core.js +++ b/src/core.js @@ -934,7 +934,7 @@ jQuery.extend({ if ( typeof elem == "string" ) { // Fix "XHTML"-style tags in all browsers elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){ - return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i) ? + return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ? all : front + ">"; }); -- 1.7.10.4