summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/index.html b/templates/index.html
index 88470fc..6451874 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -11,7 +11,7 @@
<div id="hostlist" class="row">
<div class="span12 searchbox">
- <input type="search" class="search span4 pull-right"
+ <input type="search" class="search span4 pull-right" id="search"
placeholder="Search for Hostname or IP" />
</div>
@@ -61,8 +61,8 @@ var options = {
};
var featureList = new List('hostlist', options);
-$('input[type=search]').change(function(){
- featureList.search($('input[type=search]').val());
+$('#search').change(function(){
+ featureList.search($('#search').val());
});
//-->
</script>