--- /dev/null
+function getdata(command,dId,async) {
+
+// alert("caller is " + arguments.callee.caller.toString());
+
+ var xmlhttp = null;
+ //var cb = null;
+ xmlhttp=new XMLHttpRequest();
+ //cb = callback;
+ var destId = dId;
+
+ xmlhttp.onreadystatechange = function() {
+ if(xmlhttp.readyState == 4 && xmlhttp.status==200) {
+ //if(cb)
+ if(document.getElementById(destId)){
+ document.getElementById(destId).innerHTML = xmlhttp.responseText;
+ }
+ //cb(xmlhttp.responseText);
+ //document.getElementById(destId).innerHTML = xmlhttp.responseText;
+ }
+ }
+
+ xmlhttp.open("GET",command,async);
+ xmlhttp.send(null);
+ }
\ No newline at end of file
</script>
-<script language="javascript">
-function getdata(command,dId,async) {
- var xmlhttp = null;
- //var cb = null;
- xmlhttp=new XMLHttpRequest();
- //cb = callback;
- var destId = dId;
-
- xmlhttp.onreadystatechange = function() {
- if(xmlhttp.readyState == 4 && xmlhttp.status==200) {
- //if(cb)
- if(document.getElementById(destId).innerHTML){
- document.getElementById(destId).innerHTML = xmlhttp.responseText;
- }
- //cb(xmlhttp.responseText);
- //document.getElementById(destId).innerHTML = xmlhttp.responseText;
- }
- }
-
- xmlhttp.open("GET",command,async);
- xmlhttp.send(null);
- }
-</script>
+<script language="javascript" src="getdata.js"></script>
EOF
}
-function getdata(command,dId,async) {
- var xmlhttp = null;
- //var cb = null;
- xmlhttp=new XMLHttpRequest();
- //cb = callback;
- var destId = dId;
-
- xmlhttp.onreadystatechange = function() {
- if(xmlhttp.readyState == 4 && xmlhttp.status==200) {
- //if(cb)
- if(document.getElementById(destId).innerHTML){
- document.getElementById(destId).innerHTML = xmlhttp.responseText;
- }
- //cb(xmlhttp.responseText);
- //document.getElementById(destId).innerHTML = xmlhttp.responseText;
- }
- }
- xmlhttp.open("GET",command,async);
- xmlhttp.send(null);
- }
],
-script=>[
{ -type => 'text/javascript', -src => './testgui.js'},
+{ -type => 'text/javascript', -src => './getdata.js'},
{ -type => 'text/javascript', -src => './xmlOperations.js'}
]
);