: Hi,
:
: In Internet explorer you can create your own properties in DOM objects like this:
:
: <form name="myform" myAttribute="MyValue" >
: "
: "
: </form>
:
:
: You can acces them via JavaScript like this:
:
: alert(document.myform.myAttribute);
:
:
: but when I use mozilla firefox I get an undefined... Is this a know isue ? Or am I dong something wrong ? Or shouldn't I be creating my own properties... ? I Use them for validation of my forms. I can set an attribute mandatory to true or false in my formfields etc...
:
: hope someone can help me out here...
:
:

: -mac-
: mailto:mac_doggie@hotmail.com
: the Netherlands...
:
:
DOM is a technology designed by MS and not very well supported by other non-MS browsers. This is known issue and due MS's policies will probably not be resolved very quickly.
There are two possible solutions: warn users about the coding and suggest that they use IE to explore your page; or find a way around it, possibly by defining your attributes in a 2D-array which accompanies your page.