]> wagnertech.de Git - kivitendo-erp.git/blobdiff - js/quicksearch_input.js
Layout Aufräumaktion:
[kivitendo-erp.git] / js / quicksearch_input.js
index 055b5f31a7a622d525179e1413d30063d71ff9ef..e281f94d339540c2a37141770d2cb3896fb3c7f1 100644 (file)
@@ -1,5 +1,6 @@
-function on_keydown_quicksearch(element, event) {
+function on_keydown_quicksearch(event) {
   var key;
+  var element = $(this);
 
   if (window.event)
     key = window.event.keyCode;   // IE
@@ -16,8 +17,8 @@ function on_keydown_quicksearch(element, event) {
 
   var url = "ct.pl?action=list_contacts&INPUT_ENCODING=utf-8&filter.status=active&search_term=" + encodeURIComponent(value);
 
-  search_term.val('');
   window.location.href = url;
 
   return false;
 }
+$(function(){ $('#frame_header_contact_search').keydown(on_keydown_quicksearch) });