Form code...what am I doing wrong here?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • eroswebmaster
    March 1st, 2003
    • Jul 2001
    • 20295

    #1

    Form code...what am I doing wrong here?

    I am trying to create a button that will highlight the text in a form so people can copy it.

    There will be a lot of text in the form, otherwise I wouldn't worry about it.

    This will be posted on a wordpress blog. I've tried it in both firefox and IE and it doesn't highlight the text

    <form name="copyThis">
    <textarea name="codeToCopy" cols="40" rows="5" readonly="readonly">
    Click on the button below to highlight this text.
    </textarea>
    <br>
    <input type="button" value="Highlight All" onclick="javascript:this.form.codeToCopy.focus();t his.form.codeToCopy.select();">

    </form>

    Please help thanks in advance
    For rent - ICQ 127-027-910
    Click here for more details
  • TDF
    Triple OG nigga on GFY
    • Mar 2002
    • 27296

    #2
    your code snubbed you
    Sig heil

    Comment

    • eroswebmaster
      March 1st, 2003
      • Jul 2001
      • 20295

      #3
      Originally posted by TDF
      your code snubbed you
      Et tu brute
      For rent - ICQ 127-027-910
      Click here for more details

      Comment

      • StuartD
        Sofa King Band
        • Jul 2002
        • 29903

        #4
        this.form doesn't exist.

        try

        document.copyThis.codeToCopy.select();
        This is me on facebook
        This is me on twitter

        Comment

        • TDF
          Triple OG nigga on GFY
          • Mar 2002
          • 27296

          #5
          Originally posted by eroswebmaster
          Et tu brute
          awww give me a hug big boy...i miss that fuzzy beard of yours
          Sig heil

          Comment

          • eroswebmaster
            March 1st, 2003
            • Jul 2001
            • 20295

            #6
            Originally posted by StuartD
            this.form doesn't exist.

            try

            document.copyThis.codeToCopy.select();
            Fixed..thx
            For rent - ICQ 127-027-910
            Click here for more details

            Comment

            • V_RocKs
              Damn Right I Kiss Ass!
              • Nov 2003
              • 32449

              #7
              Forms these days...

              Comment

              Working...