fix a input creation bug on ~IE10

For more information, see: http://api.jquery.com/jQuery/#creating-new-elements
This commit is contained in:
Kyo Nagashima 2012-07-02 12:37:08 +09:00
parent a9f5b62590
commit 2d115c73e1

View file

@ -31,9 +31,8 @@
label = $("<label/>").attr({
"for": id
}).append(o.labelText);
input = $("<input/>").attr({
input = $("<input type=\"search\"/>").attr({
id: id,
type: "search",
size: o.size
});
$("<p/>").addClass("formTableFilter").append(label).append(input).insertBefore(this);