checkbox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smiley22
    New Member
    • Jun 2007
    • 54

    checkbox

    [javascript]

    hi guys,

    just want to ask if this behavior is ok?

    [HTML]<input type = "checkbox" name = '"chktest" id = "chktest2">[/HTML]
    name and ID are different.

    Thanks and regards to all.


    [/javascript]
    Last edited by gits; Jan 29 '08, 09:10 AM. Reason: added code tags
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5388

    #2
    of course it is, but fix your typo for the name attrib ... remove the single-quote:

    [HTML]<input type="checkbox" name="chktest" id="chktest2">[/HTML]
    kind regards

    Comment

    • smiley22
      New Member
      • Jun 2007
      • 54

      #3
      Originally posted by gits
      of course it is, but fix your typo for the name attrib ... remove the single-quote:

      [HTML]<input type="checkbox" name="chktest" id="chktest2">[/HTML]
      kind regards

      [javascript]

      Oh that was a typo error sorry for that.

      Thanks so much

      And regards to!

      gudluck guys!


      [/javascript]

      Comment

      Working...