[jQuery] autocomplete integration with DotnetNuke
I am trying to add autocomplete to a to textbox on my website
(DotNetNuke version 4.9) that is used for search terms. If a add the
following code to the site (skin file), the autocomplete works fine:
<form autocomplete="off"><input type="text" id="dnnSEARCH"
</
form> The only trouble is I need to integrate this with my existing
text box (search box).
The code for my textbox (search box) on my site is: <dnn:SEARCH
runat="server" ID="dnnSEARCH" CssClass="ServerSkinWidget"
UseDropDownList="true" Submit="<img src="images/search.gif"
border="0" alt="Search">" /> . My existing
textbox (search box) on my site works fine without the autocomplete.
Once i add the js code i receive the following error:
'this.container.parentNode' is null or not an object . Any help
would be appreciated.