Skip to main content

Chained drop down box value not showing in IE 7,8,9 or lower browser



Here is my javascript code::---







<script language="javascript" type="text/javascript">



//Browser Support Code

function ajaxFunction(str){

var ajaxRequest; // The variable that makes Ajax possible!



try{

// Opera 8.0+, Firefox, Safari

ajaxRequest = new XMLHttpRequest();

} catch (e){

// Internet Explorer Browsers

try{

ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");

} catch (e) {

try{

ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");

} catch (e){

// Something went wrong

alert("Your browser broke!");

return false;

}

}

}

// Create a function that will receive data sent from the server



var url="../frontend/views/home/category.php" + "?value="+str;



ajaxRequest.onreadystatechange = function(){

if(ajaxRequest.readyState == 4){

//document.myForm.time.value = ajaxRequest.responseText;

document.getElementById("class").innerHTML=ajaxRequest.responseText;

}

}



ajaxRequest.open("GET", url, true);

ajaxRequest.send(null);



}





</script>






Comments

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?