UltraLite ActiveX User's Guide
Understanding UltraLite ActiveX Development
Preparing to work with UltraLite ActiveX
Working with JScript
The JScript language supported by Pocket IE is incompatible with that of Internet Explorer 4 and up, in the following ways:
Pocket IE JScript is case insensitive. Scripts written for Pocket IE may not work on IE unless the proper case is used.
The BUTTON tag is not supported, but a button can be created using <INPUT TYPE="BUTTON">.
HTML tag names are in the same namespace as JScript functions. Ensure that the name of an HTML element does not conflict with any function names in the current document.
For example, pressing this button will cause an error:
<SCRIPT> function b_Done() { ... } </SCRIPT> <INPUT NAME="b_Done" TYPE="BUTTON" VALUE="Done" onClick="b_Done()">
Dynamic HTML is not supported by Pocket IE. To get dynamic content, you can emit HTML with document.write, or by setting DIV contents.