fix a input
creation bug on ~IE10
For more information, see: http://api.jquery.com/jQuery/#creating-new-elements
This commit is contained in:
parent
a9f5b62590
commit
2d115c73e1
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue