CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Threaded View

  1. #1
    Join Date
    Apr 2008
    Posts
    4

    Working in FireFox not IE

    Hi i have an Ajax script which is working in FireFox but not IE, obviosuly i want a wide range of people to be able to view, but cant seem to figure it out. Any help would be great, here is the code:

    Code:
    	 function LocationClick(e){
    	  	 if(e.elementID != null){
    			shape = map.GetShapeByID(e.elementID);
    			country = shape.GetID()
    			if(country == "msftve_1001_200000")
    				country = "AUSTRALIA";
                                     ..........
                                     else if (country == "msftve_1001_200017")
    				country = "BRAZIL";
    			getCountry();
    			}
    	  	}
    
    
                                    function getCountry() {
    		xhr = new XMLHttpRequest();
    		submission = "id="+ country;
    		   xhr.open("GET", "tickets.php?" + submission);
    		   xhr.onreadystatechange = processNameData;
    		   xhr.send(null);
    	    }
    
    
    		function processNameData() {
    		if (xhr.readyState == 4) {
    			var data = xhr.responseText;
    			document.getElementById("ajaxTickets").innerHTML = xhr.responseText;
    			}
    		else {
    			document.getElementById("ajaxTickets").innerHTML = '<img src="images/loading.gif">';
    			}
    	 	}
    Now in IE the loading picture works, but the information is never loaded. Any help would be great
    thanks
    al
    Last edited by PeejAvery; May 5th, 2008 at 10:04 AM. Reason: Fixed code tags.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured