View Single Post
08-26-2008, 07:27 PM
#2
wezy is offline wezy
wezy's Avatar
Status: Junior Member
Join date: Jul 2008
Location: Belgium
Expertise:
Software:
 
Posts: 26
iTrader: 0 / 0%
 

wezy is on a distinguished road

Send a message via MSN to wezy Send a message via Skype™ to wezy

  Old

You can give this code a try, should work in all browsers.

Code:
function ajaxFunction(){
	var xmlHttp;
  	try{
    	// Firefox, Opera 8.0+, Safari
	    xmlHttp=new XMLHttpRequest();
    }catch (e){
    	// Internet Explorer
    	try{
    		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	    }catch (e){
    		try{
        		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	        }catch (e){
		    	alert("Your browser does not support AJAX!");
    		    return false;
        	}
    	}
	}
	xmlHttp.onreadystatechange=function(){
      	if(xmlHttp.readyState==4){
      		var responce = xmlHttp.responseText;
		}
    };
    xmlHttp.open("GET","example.php",true);
    xmlHttp.send(null);
}
Hope it works,
Erwin