mirror of
https://github.com/jquery/jquery.git
synced 2026-02-15 14:55:26 -05:00
Fixed #2084 by added embed to the list of elements where it is ok to have self closing xhtml.
This commit is contained in:
@@ -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 + "></" + tag + ">";
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user