How to create RADIO buttons in IE using DOM

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Raghuram Banda

    How to create RADIO buttons in IE using DOM

    Hi There,

    Can any one help me, in how to create a set of radio buttons in IE using
    JavaScript DOM.

    Thanks in advance
    Raghuram Banda

  • DU

    #2
    Re: How to create RADIO buttons in IE using DOM

    Raghuram Banda wrote:[color=blue]
    > Hi There,
    >
    > Can any one help me, in how to create a set of radio buttons in IE using
    > JavaScript DOM.
    >
    > Thanks in advance
    > Raghuram Banda
    >[/color]

    Search the archives of this newsgroup. I know this was answered before.


    DU
    --
    Javascript and Browser bugs:

    - Resources, help and tips for Netscape 7.x users and Composer
    - Interactive demos on Popup windows, music (audio/midi) in Netscape 7.x


    Comment

    • Dom Leonard

      #3
      Re: How to create RADIO buttons in IE using DOM

      DU wrote:
      [color=blue]
      > Raghuram Banda wrote:
      >[color=green]
      >> Can any one help me, in how to create a set of radio buttons in IE
      >> using JavaScript DOM.
      >>[/color]
      >
      > Search the archives of this newsgroup. I know this was answered before.
      >[/color]

      Yes, but in the interest of friendly group participation, please don't
      refer back to your own previous reply 45 minutes after a repost when,
      per netiquette and ng FAQ the poster has waited a suitable period of
      time before reposting in search of alternative ideas.


      So IE demonstrably fails at creating functional radio buttons using W3C
      DOM methods?

      One workaround is to construct HTML for the buttons in javascript and
      set it as the innerHTML property of a suitable container element (create
      and insert a DIV element, say, before setting its innerHTML property).
      untested for LABEL elements and as ugly as it sounds.


      HTH,

      Dom


      Comment

      Working...