vote up 1 vote down star
<html>
<head>
	<title></title>
	<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
	<script language="JavaScript" type="text/javascript">
		function getcsa(){
			$.get("getcsas.php",{},function(xml){
				$(xml).find('csa').each(function(){
					var csa = $(this);
					var vzid = $(csa).find('vzid').text();
					var firstname = $(csa).find('firstname').text();
					var lastname = $(csa).find('lastname').text();
					var option = '<option value="' + vzid + '">'+lastname+', '+firstname+'</option>';
					$("#agent").append(option);
				});
			});
		};
		$(document).ready(function(){ 
			getcsa();
		});
	</script>
</head>

<body>
	<select id="agent">
	</select>
</body>

The above generates a populated dropdown list in FF but not IE6...

flag

2 Answers

vote up 1 vote down

Are you really expecting XML? Perhaps, you should set that as your expected data type on the get call.

 $.get("getcsas.php",{},function(xml){
      $(xml).find('csa').each(function(){
          var csa = $(this);
          var vzid = $(csa).find('vzid').text();
          var firstname = $(csa).find('firstname').text();
          var lastname = $(csa).find('lastname').text();
          var option = '<option value="' + vzid + '">'+lastname+', '+firstname+'</option>';
          $("#agent").append(option);
      }, 'xml' );
});
link|flag
@Michael Bridak - Have you tried this solution? – karim79 Aug 6 at 23:08
vote up 0 vote down

Came back from vacation and found the trouble.

I added

header ("content-type: text/xml");

to the top of the getcsas.php file and all started working like a charm.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.