aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete/multiple.html
diff options
context:
space:
mode:
Diffstat (limited to 'demos/autocomplete/multiple.html')
-rw-r--r--demos/autocomplete/multiple.html7
1 files changed, 0 insertions, 7 deletions
diff --git a/demos/autocomplete/multiple.html b/demos/autocomplete/multiple.html
index 742c7d857..1f9243bf2 100644
--- a/demos/autocomplete/multiple.html
+++ b/demos/autocomplete/multiple.html
@@ -39,13 +39,6 @@
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join(", ");
- if ( document.selection ) {
- this.focus();
- var range = document.selection.createRange();
- range.moveStart( 'character', this.value.length );
- range.moveEnd( 'character', 0 );
- range.select();
- }
return false;
}
});