Require help with css, Autosuggest jquery by Drew Wilson
Because of stackoverflows spam prevention, links + image are in pastebin. HERE
On with question-
I want it so when I click an autosuggest it works as a link but that isn't the main question here.
If you go on my website (pastebin) you can see there are boxes around the text box.
[Please look at the image, also in pastebin] (Drew's form ontop, mine below)
It must be css, but I can not find which property has to be changed. (the form is generated on-the-fly so I can't l开发者_Go百科ook at the html.
thanks
Pal, thats because you have called the plugin twice at $(document).ready
.
Remove the following from your
$(document).ready
.
$(function () {
$("input[type=text]").autoSuggest(data);
});
JSFiddle here: http://jsfiddle.net/naveen/H7ptB/
Try commenting out all the border properties and box shadow properties in the Auto Suggest CSS file.
精彩评论