forked from jswartwood/jQuery-MochiKit-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjQuery-MochiKit-tags.js
153 lines (143 loc) · 2.25 KB
/
jQuery-MochiKit-tags.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*!
* jQuery MochiKit tags v1.5.1 | git.io/Bmwneg
* jacob.swartwood.info/license/
*/
/*
* A jQuery adaptation of MochiKit's DOM creation shortcuts
* https://github.com/jswartwood/jQuery-MochiKit-tags
*
* Copyright (c) 2011 Jacob Swartwood
* Licensed under the MIT license
*
* Contributors:
* Herbert Vojčík - https://github.com/herby/jQuery-MochiKit-tags
*/
(function ( $ ) {
var tagMap = {},
slashRE = /\/$/;
$.mochiTags = function( tags ) {
if (tags) {
tags = [].concat(tags);
var tag, closing;
for ( var i = 0, j = tags.length; i < j; i++) {
tag = tags[i].replace(slashRE, "").toUpperCase();
if (!tagMap[tag]) {
tagMap[tag] = {
closing: slashRE.test(tags[i]),
tagName: tag.toLowerCase()
};
$[tag] = tagFunctionFactory("<" + tagMap[tag].tagName + (tagMap[tag].closing ? "></" + tagMap[tag].tagName : "/") + ">");
}
}
}
return tagMap;
};
function tagFunctionFactory( tagTemplate ) {
return function( /* [attrs], children... */ ) {
var tag = $(tagTemplate),
children = Array.prototype.concat.apply([], arguments);
if ($.isPlainObject(children[0])) {
tag.attr(children.shift());
}
for ( var g = 0, h = children.length; g < h; g++) {
tag.append(children[g]);
}
return tag;
};
}
$.mochiTags([
"A",
"ABBR",
"ADDRESS",
"ARTICLE",
"ASIDE",
"AUDIO",
"B",
"BDI",
"BDO",
"BLOCKQUOTE",
"BR/",
"BUTTON/",
"CANVAS",
"CAPTION",
"CITE",
"CODE",
"COL",
"COLGROUP",
"COMMAND",
"DATALIST",
"DD",
"DEL",
"DETAILS",
"DIV",
"DL",
"DT",
"EM",
"EMBED",
"FIELDSET",
"FIGCAPTION",
"FIGURE",
"FOOTER",
"FORM",
"H1",
"H2",
"H3",
"H4",
"H5",
"H6",
"HEADER",
"HGROUP",
"HR/",
"I",
"IFRAME",
"IMG/",
"INPUT/",
"INS",
"KEYGEN/",
"LABEL",
"LEGEND",
"LI",
"LINK/",
"MARK",
"MENU",
"METER",
"NAV",
"OBJECT",
"OL",
"OPTGROUP",
"OPTION",
"OUTPUT/",
"P",
"PARAM",
"PRE",
"PROGRESS",
"Q",
"RP",
"RT",
"RUBY",
"S",
"SCRIPT",
"SECTION",
"SELECT",
"SOURCE",
"SPAN",
"STRONG",
"STYLE",
"SUB",
"SUP",
"TABLE",
"TBODY",
"TD",
"TEXTAREA",
"TFOOT",
"TH",
"THEAD",
"TIME",
"TR",
"TRACK",
"TT",
"UL",
"VIDEO",
"WBR/"
]);
})(jQuery);