On one of my pages, I have three radio buttons, each pointing at a different functionality. When the user chooses a button I want to go to a new php page.
Presently I .show() a form button with hidden inputs for the chosen new functionality on the original page and .hide() the other forms, list boxes, etc., which would be chosen by another radio button. This seems like an extra step for the user - click a radio button then have to click the form button. Is there any way to go to another php page without using a form or without two steps by the user. I don't want to use .load and hide() every thing else, which keeps me on the original page but gives the appearance of a new page, as that lead to spaghetti code on the original page, especially as I add additional radio buttons. Note that the user's choice of a radio button leads to a series of new pages consistent with that buttons chosen functionality.
thanks,
Don