Ok, I’m currently trying to get a nice menu system into a notes form. I am trying to use the one displayed in the link below:
http://www.dynamicdrive.com/dynamicindex1/droptabmenu.htm
These are html based. I have inserted the HTML, stylesheet and javascript onto a Notes form, which works perfectly if the form is viewed via a webclient. However, as soon as I try and view it on the Notes client, I get javascript errors.
The JavaScript error is that “document.getElementByID” is not a function
Should Notes be able to render this menu system in the same was as a browser should? I know Notes is more limited with the CSS, but I wasn’t aware it was limited with JavaScript.
Thanks
Subject: Using HTML and JavaScript in Notes Client
As far as i know i have never seen any working javascript functions on notes client. I am not even sure if javascript can work on notes client.
Raj
Subject: RE: Using HTML and JavaScript in Notes Client
Oh well, that’s a shame. As far as I know JavaScript does work in the client, otherwise designer wouldn’t give you an option to use it, however, as Stan says, it looks quite limited.
Guess I’ll have to make up my own menu system 
Thanks anyway
Subject: Using HTML and JavaScript in Notes Client
Notes doesn’t display HTML – it needs to convert your HTML to Notes Rich Text (CD) first. Once the conversion has happened, your HTML document is history. JavaScript in Notes can only access form elements (fields and buttons), images, and the certain properties of the window object. The “document” object is essentially an empty container for the form object and the images collection, which are the only mutable objects on the page.