Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
fBuildXML = function(Outgoing_str){
Outgoing_str = "<ParentNode>"
Outgoing_str = Outgoing_str + "<ChildNode1>" + "Child Node 1 Data" + "</ChildNode1>";
Outgoing_str = Outgoing_str + "<ChildNode2>" + "Child Node 2 Data" + "</ChildNode2>";
Outgoing_str = Outgoing_str + "</ParentNode>";
return Outgoing_str;
}
fCreateFile = function(){
var Outgoing_xml:XML = new XML();
var Incoming_xml:XML = new XML();
var tOutgoing_str:String = fBuildXML(tOutgoing_str);
OutGoing_xml.xmlDecl = "<?xml version='1.0' encoding='utf-8'?>";
OutGoing_xml.parseXML(OutGoing_str);
//and either
OutGoing_xml.sendAndLoad("url",Incoming_xml);
//or
Outgoing_xml.send("url");
}