how to get Div values

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();

}

plz plz help

I wrote a tutorial on this it’s linked here.

http://www.phphelp.com/forum/index.php?topic=17363.0

Sponsor our Newsletter | Privacy Policy | Terms of Service