Compatibility: Web Runtime in S60 3rd Edition, Feature Pack 2
HTML
To enable system info API in widgets it needs to be embedded in the document since it is implemented as a netscape scriptable plug-in.
<embed type="application/x-systeminfo-widget" hidden="yes"></embed>
HTML example
"http://www.w3.org/TR/html4/strict.dtd">
<head>
<script type="text/javascript" src="api.js" />
<body onload="testapi()">
<embed type="application/x-systeminfo-widget" hidden="yes"></embed>
</body>
</html>
JavaScript
function testapi()
var sysinfo = document.embeds[0];
sysinfo.beep(5000, 900);
}
Comments(0)