How do you style an individual JQuery Autocomplete widget?

datanett

New Member
I am not using a theme from JQuery UI Themeroller and I have the following:Along with the content of my .html file:\[code\]<input id="autocomplete">\[/code\]At the end of my .html file:\[code\]$( "#autocomplete" ).autocomplete({ source: [ "c++", "java", "php", "coldfusion", "javascript", "asp", "ruby" ]});\[/code\]I am attaching the following to my .html file, at the top:\[code\]<link rel="stylesheet" href="http://stackoverflow.com/questions/14430378/js/jquery-ui-1.10.0.custom.css" type="text/css"><script src="http://stackoverflow.com/questions/14430378/js/jquery-1.9.0.js"></script><script src="http://stackoverflow.com/questions/14430378/js/jquery-ui-1.10.0.custom.js"></script>\[/code\]My problem: I am trying to style that specific autocomplete widget (not all autocomplete widgets). How do I do this?I've read through the JQuery UI documentation and all I can find is a solution for styling all autocomplete widgets, which is not what I want.
 
Back
Top