I have a custom HTML home page for my website. In the top menu I want to place a search bar. Im using this custom search bar in my main site which works fine but I can't seem to make it work with my HTML page.
CODE
<ns:Search type="custom" customtext="Search" maxlength="200"
/>
<script type="text/javascript">
var el = document.getElementById("ctl00_ctl02_search");
var helpText = "Product Search";
el.value = helpText;
el.onfocus = function() {if (this.value == helpText) { el.value = "";}};
el.onblur = function() {if (this.value == "") { el.value = helpText;}}
</script>
I also have this shopping cart count script I want to have working as well.
CODE
(
<%
Cart.Count
%>
)</td
Can anyone help me with this?
Thank in advance..