Hello Friends
plz help me
there is a div
which contain a list of values I want get These values in a variable
bcz in that div I m using function which take perameter
function item_list(str){
var xmlhttp;
var str2=document.getElementById(‘search_suggest’).value;
var str=document.getElementById(‘search_suggest’).innerHTML=str2;
alert(str);
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject(“Microsoft.XMLHTTP”);
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById(“itemList”).innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open(“GET”,“itemList.php?q=”+str,true);
xmlhttp.send();
}