Results 1 to 2 of 2

Thread: need help

  1. #1
    Join Date
    Feb 2010
    Location
    Sri Lanka
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default need help

    I have a form with 2 textboxs. with js handling


    <script type = "text/javascript">
    function autofill(which) {
    document.getElementById("text2").value = which;
    }
    </script>
    <input type="text" name="text1" onblur="autofill(this.value)" />
    <input type="text" name="text2" />



    So According the above js, when user type some thing on text1 text box automatically update it to the text2 text box...

    My question is how I handle this case by php..?

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    You need to give us more information.
    Jeremy | jfein.net

Bookmarks

Posting Permissions

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