jquery autocomplete() is not working

Posted by phil on Stack Overflow See other posts from Stack Overflow or by phil
Published on 2010-06-06T15:03:35Z Indexed on 2010/06/06 15:12 UTC
Read the original article Hit count: 194

Filed under:
<script src="http://code.jquery.com/jquery-latest.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>

© Stack Overflow or respective owner

Related posts about jQuery