Results 1 to 2 of 2

Thread: [RESOLVED] Variable in a text box?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 2005
    Location
    middle earth
    Posts
    95

    Resolved [RESOLVED] Variable in a text box?

    Is there a way i can put a variable into value of a text box.

    Ex.
    String var ="XYZ";
    .
    .
    .
    .
    <input name="ABC" value=var > //this doesnt work.
    ....

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Variable in a text box?

    Code:
    var x = "hello world";
    document.getElementById('TextBox1').value = x;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width