mirror of
https://github.com/jquery/jquery.git
synced 2026-02-01 20:55:01 -05:00
Manipulation: add support to tag-hyphenated elements
Fixes #1987 Closes gh-1988
This commit is contained in:
committed by
Oleg Gaidarenko
parent
534f13025a
commit
85ffc6d973
@@ -16,8 +16,8 @@ define([
|
||||
], function( jQuery, concat, push, access, rcheckableType, support, dataPriv, dataUser ) {
|
||||
|
||||
var
|
||||
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
|
||||
rtagName = /<([\w:]+)/,
|
||||
rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,
|
||||
rtagName = /<([\w:-]+)/,
|
||||
rhtml = /<|&#?\w+;/,
|
||||
rnoInnerhtml = /<(?:script|style|link)/i,
|
||||
// checked="checked" or checked
|
||||
|
||||
Reference in New Issue
Block a user