hello,
my js:
my js:
$(function(sender, e) {
alert("hello to my EFML-Application :D");
if(window.isXMLHttpRequest) {
var xml = new XMLHttpRequest();
xml.open("GET", "http://www.google.de/");
xml.onreadystatechange = function {
if(xml.readystate == 2) {
alert(xml.responsetext);
}
};
}
});
window.onclose(function(sender, e) {
alert("Application is closing");
});
but i think all is right