/ Published in: JavaScript
The below script list out the available tags based on the character you enter in the Tag field and the available tags in the array. All the user submitted tags through the Tag form will be stored in an array. Use the below script to enable the auto-complete with your applications. We also used this in and around the call centre system as [predictive dialler software](http://www.touchstarccs.co.uk/ "Inbound, Outbound or Blended Call Centre Software")
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script> $(function() { var userTags = [ "touchstarccs.co.uk", "daviker.co.uk", "google.co.uk", "totalworkflow.co.uk", "business process management", "bpm software", "predictive dialler software", "predictive dialer", ]; $( "#tags" ).autocomplete({ source: userTags }); }); </script> <div class="auto-complete"> <div class="au-demo"> <label for="tags">Tags: </label> <input id="tags"> </div> </div>
URL: http://www.touchstarccs.co.uk/