Description:
Netscape Communications Corp.'s JavaScript language.
|
|
|
FAQ Topic - Why does my code fail to access an element? (2012-05-24)
|
| |
------------------------------ ------------------------------ -----------
FAQ Topic - Why does my code fail to access an element?
------------------------------ ------------------------------ -----------
An element can only be accessed after it exists in the document.
Either:
A) include your script after the HTML element it refers to, or... more »
|
|
Scrolling Options in a <Select> List
|
| |
Hi:
I'm stumbling along now in building my new app, but I have another problem that I can't answer:
I have a <select> box with a viewable area of about 20 lines.
I am (programmatically) filling the options individually into this list from the top down (using optionobj.add(...) ) with about 80 options.... more »
|
|
FAQ Topic - How do I modify the content of the current page? (2012-05-23)
|
| |
------------------------------ ------------------------------ -----------
FAQ Topic - How do I modify the content of the current
page?
------------------------------ ------------------------------ -----------
Using the non-standard but widely implemented
`innerHTML` property:
`<div id="anID">Some Content</div>` with script:... more »
|
|
Accessing a <select> <option> ?
|
| |
Hi:
When a user clicks on an <option> (in one of my three <select> lists, I wish to have a specific function executed.
In my body 'onload' property/function, I call a function -- part of which is shown below
*********************
el = memberopts[i] ; // memberopts is an array... more »
|
|
|