//sample solution for script.js
$(function() {
//
// Add the code for selecting the #tags input and set the source
// for the autocomplete to be 'availableTags' which are set in
// autocomplete-options.js
$("#tags").focus(function(){
$("#tags").autocomplete({source: availableTags});
});
});
$(function() {
//
// Add the code for selecting the #tags input and set the source
// for the autocomplete to be 'availableTags' which are set in
// autocomplete-options.js
$("#tags").focus(function(){
$("#tags").autocomplete({source: availableTags});
});
});
No comments:
Post a Comment