The following is the contents of the vbulletin_live_ajax_search.js file:
Code:
/**
* Live Search v1.2
* @author mad@Max
*/
var xmlHttp3
function showHint(word)
{
document.getElementById("search_results").innerHTML = '<p></p><p></p><p align="center" class="smallfont"><img src="images/misc/progress.gif" /> Searching...</p>';
xmlHttp3=GetXmlHttpObject3()
if (xmlHttp3==null)
{
alert ("Browser does not support HTTP Request")
return
}
var url=hurl+"ajax_search.php"
url=url+"?query="+word
xmlHttp3.onreadystatechange=stateChanged3
xmlHttp3.open("GET",url,true)
xmlHttp3.send(null)
}
function stateChanged3()
{
var sSearch = document.getElementById("search_input").value;
var obj = document.getElementById("search_results");
var obj2 = document.getElementById("q_search");
if (sSearch.length>=3){
if (xmlHttp3.readyState==4 || xmlHttp3.readyState=="complete")
{
obj2.style.display = 'block';
obj.innerHTML=xmlHttp3.responseText;
}
} else {
obj2.style.display = 'none';
obj.innerHTML = '';
}
}
function GetXmlHttpObject3()
{
var objXMLHttp3=null
if (window.XMLHttpRequest)
{
objXMLHttp3=new XMLHttpRequest()
}
else if (window.ActiveXObject)
{
objXMLHttp3=new ActiveXObject("Microsoft.XMLHTTP")
}
return objXMLHttp3
}
As per the instructions - where do you
add your forum path in var hurl="" -- I do not see that bit of code in the .js file
Thanx,
Jacquii.