Philip007
Philip007

Reputation: 3230

jquery autocomplete() is not working

<link rel="stylesheet" type="text/css" href="jquery-ui-1.8.2.custom.css" />
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script>


<body>
Search: <input id="example" /> 
</body>

<script>
$(document).ready(function(){
var data = "Core Selectors Attributes Traversing Manipulation CSS Events Effects Ajax Utilities".split(" ");
$("#example").autocomplete(data);
});
</script>

Upvotes: 0

Views: 1237

Answers (1)

Brian Tol
Brian Tol

Reputation: 4199

Since your example is straight from the Autocomplete plugin page, I'm guessing that's the plugin your attempting to use. You'll need to download it and put it someplace where your code can use it.

<script src="http://code.jquery.com/jquery-latest.js"></script>
<!-- You'll want to change this next line to your local copy of the plugin. -->
<script src="jquery.autocomplete.js"></script> 

Search: <input id="example" /> 

<script>
$(document).ready(function(){
var data = "Core Selectors Attributes Traversing Manipulation CSS Events Effects Ajax Utilities".split(" ");
$("#example").autocomplete(data);
});
</script>

Upvotes: 2

Related Questions