From what I remember, there are certain attributes in IE that can only be written once. What they consider once is during the createobject phase before its ever sent to the document. Most of the time it will complain about how the 'object does not support this', but in your case it seemed to be silently failing.
On 1/9/06, Sravan kumar <[EMAIL PROTECTED]> wrote:
Thanks Marlon. It worked. It is kind of weird though.
Sravan
>From: Marlon Moyer < [EMAIL PROTECTED]>
>Reply-To: Dallas/Fort Worth ColdFusion User Group Mailing
>List<[email protected]>
>To: Dallas/Fort Worth ColdFusion User Group Mailing
>List<[email protected]>
>Subject: Re: [DFW CFUG] DOM - IE woes
>Date: Mon, 9 Jan 2006 13:20:04 -0600
>
>IE is kinda wonky when it comes to certain fields being read/write once.
>So
>most of the time I do something like this:
>
> var inp1;
> if (document.all) {
> inp1 = document.createElement("<input name=\"case"+iteration+"\"/>");
> }
> else {
> inp1 = document.createElement("INPUT");
> }
> inp1.name= "case"+iteration;
>
>
>
>On 1/9/06, Sravan kumar <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> >
> > I am trying to add rows dynamically to a table using DOM. I was able to
>do
> > it successfully but struck little further while firing the events from
> > dynamically created elements. Please see the attachment.
> > I had a problem in reading the dynamically created element in IE 6.0
> > browser. It just returns that the element is not defined at all. It just
> > works fine in Netscape though. Please execute the attached html to see
> > what
> > i am talking about.
> >
> > Any help is appreciated.
> >
> > thanks
> > Sravan
> >
> >
> >
> > _______________________________________________
> > Reply to DFWCFUG:
> > [email protected]
> > Subscribe/Unsubscribe:
> > http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archives:
> > http://www.mail-archive.com/list%40list.dfwcfug.org/
> > http://www.mail-archive.com/list%40dfwcfug.org/
> > DFWCFUG Sponsors:
> > www.HostMySite.com
> > www.teksystems.com/
> >
> >
> >
> >
>
>
>--
>Marlon
>
>A spaceman came travelling on his ship from afar,
>'twas light years of time since his mission did start,
>And over a village he halted his craft,
>And it hung in the sky like a star, just like a star...
>--Chris De Burgh, A Spaceman Came Travelling
>_______________________________________________
>Reply to DFWCFUG:
> [email protected]
>Subscribe/Unsubscribe:
> http://lists1.safesecureweb.com/mailman/listinfo/list
>List Archives:
> http://www.mail-archive.com/list%40list.dfwcfug.org/
> http://www.mail-archive.com/list%40dfwcfug.org/
>DFWCFUG Sponsors:
> www.HostMySite.com
> www.teksystems.com/
_______________________________________________
Reply to DFWCFUG:
[email protected]
Subscribe/Unsubscribe:
http://lists1.safesecureweb.com/mailman/listinfo/list
List Archives:
http://www.mail-archive.com/list%40list.dfwcfug.org/
http://www.mail-archive.com/list%40dfwcfug.org/
DFWCFUG Sponsors:
www.HostMySite.com
www.teksystems.com/
--
Marlon
A spaceman came travelling on his ship from afar,
'twas light years of time since his mission did start,
And over a village he halted his craft,
And it hung in the sky like a star, just like a star...
--Chris De Burgh, A Spaceman Came Travelling
_______________________________________________ Reply to DFWCFUG: [email protected] Subscribe/Unsubscribe: http://lists1.safesecureweb.com/mailman/listinfo/list List Archives: http://www.mail-archive.com/list%40list.dfwcfug.org/ http://www.mail-archive.com/list%40dfwcfug.org/ DFWCFUG Sponsors: www.HostMySite.com www.teksystems.com/
