Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Web PAge Java Script

Options
  • 04-08-2004 9:58am
    #1
    Closed Accounts Posts: 537 ✭✭✭


    I have two forms
    The Two forms have A combo box
    on form 1 if you press the submit button it will go to form two
    I want the combo box in form two to have the same value highlighted as in form 1
    I am not using frames nor do i want to
    Does anyone have any ideas


Comments

  • Registered Users Posts: 7,739 ✭✭✭mneylon


    Could you use PHP to pass the value from one form to the other?


  • Registered Users Posts: 68,317 ✭✭✭✭seamus


    If you change your form to GET
    you can use
    var querystring = location.search.substring(1);
    
    to get the value in the URL passed to the second page. It's not foolproof though.


Advertisement