NovaTheLegend
New Member
EDIT: thanks to charlietfl I realized that IE < 9 converts all XML tags to uppercase. However, enven with this knowledge I have not been able to find a solution to get the XML to display properly in IE8. I have this working in all good browsers, IE10 and 9 but in IE8 there is no xml data being parsed/displayed.\[code\]$("#Form").validate({ submitHandler: function(form) { $('#prcs3').show(); var dataString = $(form).serialize(); $.ajax({ type: $(form).attr('method'), url: form.action, data: dataString, clearForm: true, success: function(data) { $('#resultGenerate > li').remove(); var answer = $(data).find("td:eq(3)").text(); var message = $(data).find("td:eq(5)").html(); var $xml = $( message ); if (answer==="True") { $('#prcs3').hide(); $xml.find('license').each(function(){ var CustomerID = $(this).find('CustomerID').text(); var License = $(this).find('License').text(); var Log = $(this).find('Log').text(); var ExpirationDate = $(this).find('ExpirationDate').text(); $("#resultGenerate").show().removeClass('error').append($('<li><span class="ID">' + CustomerID + '</span><span class="L">' + License + '</span><span class="Log">' + Log + '</span><span class="Exp">' + ExpirationDate + '</span></li>')); }); } else { $('#prcs3').hide(); $('#resultGenerate').show().html('<a class="close">X</a><ul><li>' + message + '</li></ul>'); } } }); return false; }});\[/code\]What could be causing IE8 to not display my returned/parsed xml? I appreciate any advice, as always thank you.