|
1. Browser Compatibility
-
HTMLImageElement.getWidth() and HTMLImageElement.getHeight() return a number,
but are specified to return a String by W3C Dom Level 2.
-
For compatibility with IE6, checkboxes must be created in the following order:
- Create the
input element and set its type to checkbox.
- Insert the element into the DOM.
- Set
checked to true or false.
|