From c561ebe710d6e6a43aa4afc6c2036a215378ce87 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Thu, 21 Aug 2008 09:38:06 +0800 Subject: Inital commit Signed-off-by: Jeremy Kerr --- htdocs/js/autocomplete.js | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 htdocs/js/autocomplete.js (limited to 'htdocs/js/autocomplete.js') diff --git a/htdocs/js/autocomplete.js b/htdocs/js/autocomplete.js new file mode 100644 index 0000000..115ffba --- /dev/null +++ b/htdocs/js/autocomplete.js @@ -0,0 +1,43 @@ + + +function ac_keyup(input) +{ + input.autocomplete.keyup(); +} + +function AutoComplete(input) +{ + this.input = input; + this.div = null; + this.last_value = ''; + + input.autocomplete = this; + + this.hide = function() + { + if (this.div) { + this.div.style.display = 'none'; + this.div = null; + } + + } + + this.show = function() + { + if (!this.div) { + this.div = + + this.keyup = function() + { + value = input.value; + + if (value == this.last_value) + return; + + if (value.length < 3) { + this.hide(); + } + + +} + -- cgit v1.2.3