Hello all,
I'm trying to autocomplete some text-fields with
$('#username').replaceWith('<input id=\"username\" type=\"text\" name=\"user_name\">');
$("input#username").autocomplete({
source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"]
});
I know there's a jQuery autocomplete plugin. How do I include the plugin?
Thank you in advance.