From 810e70eeedb7898ced121ac9cb05dc854a247ea7 Mon Sep 17 00:00:00 2001 From: Mike McKay Date: Sun, 6 May 2012 19:50:12 -0300 Subject: [PATCH] Converted input type to be "search" instead of "text" to take advantage of html5 features (like X for clearing) --- jquery.table-filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.table-filter.js b/jquery.table-filter.js index d85ad9a..855306e 100644 --- a/jquery.table-filter.js +++ b/jquery.table-filter.js @@ -33,7 +33,7 @@ }).append(o.labelText); input = $("").attr({ id: id, - type: "text", + type: "search", size: o.size }); $("

").addClass("formTableFilter").append(label).append(input).insertBefore(this);