<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>
<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
Share
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.