Teniendo un XML como:
Código:
Estoy tratando de llerlo e imprimir 1 de sus valores así:<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> <arch_xml> <msn id="0" value="Login Success. You will redirect!"/> <msn id="1" value="The login is invalid."/> </arch_xml>
Código:
El alert siempre me retorna: undefinedvar tmp=[]; function settmp(id,name){ tmp[id] = name; } function read_xml_lang() { $.get("lang/en.xml", function (xml) { $(xml).find('msn').each(function(){ var id = $(this).attr('id'); var name = $(this).attr('value'); settmp(id,name); }); }); } read_xml_lang(); alert(tmp[0]);
Gracias