summaryrefslogblamecommitdiffstats
path: root/src/html/sysInfoTest.html
blob: ab4247c36c0803aecf7edfa7355e17a39930e28f (plain) (tree)




















                                                          


<html>
<head>
<script type="text/javascript">
function getInfo(){
  var tmp = jsObject.getSysInfo(document.form.info.value);
  document.form.returnFromQT.value = tmp;
}
</script>
</head>
<body>
<form name="form">
  <p>
    <input type="text" name="info">
    <input type="button" name="toQT" value="Request info" 
    onclick="getInfo()">
    <input type="text" name="returnFromQT">
  </p>
</body>
</html>