Return to Snippet

Revision: 56075
at March 7, 2012 20:31 by aruldave


Initial Code
<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>

Initial URL
http://www.touchstarccs.co.uk/

Initial Description
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")

Initial Title
Auto-complete Script Example

Initial Tags
javascript, php, html, ASP

Initial Language
JavaScript