Hi all,
I'm having problem with the javascript functions.
I'm using OOB webpage that uses MOSS features for search.
It seems that when I click the search button, it doesn't work using firefox browser.
Here is the code from the XML page:
<td bgcolor="#666666" width="70px"><img src="../images/Search-buttonA.gif" onclick='gosearch()' id="searchImage" style="cursor:pointer"></td>
<script language="javascript">
function gosearch()
{
var scope = "&s=Discussions"
var resultsurl="../Pages/Discussions.aspx";
var Search = document.getElementById("txtSearch0").getAttribute("value");
var resultsurl = resultsurl + "?k=" + Search + scope;
window.navigate(resultsurl)
}
</script>
Can anyone help me on this?
Am I missing something???