I am trying to create a button (onClick) that will get to a specified page. Can anyone help?
Thanks
JL
I am trying to create a button (onClick) that will get to a specified page. Can anyone help?
Thanks
JL
If you're willing to take a little time over it, you'll be better off using a link with a outset border-style and a grey background to make it LOOK like a button, thus making it work in non-JS browsers.HTML Code:<button onclick="window.location.href='newpage.htm';">Go to newpage.htm</button>
Or, you can use a form with no inputs:HTML Code:<a href="newpage.htm" style="text-decoration: none; border-style: outset; background-color: grey; border-color: grey; border-width: 3px; color: black;" onclick="this.style.borderStyle='inset';">Go to newpage.htm</a>
Tweak as required.HTML Code:<form action="newpage.htm" method="post"> <input type="submit" value="Go to newpage.htm"/> </form>
Last edited by Twey; 07-16-2005 at 09:10 AM.
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
say if I would like to allow guests to enter/select on which state they're in in a text field, then (as they click on a button) I would like the site to direct accordingly.... what would be the steps for this type of action....???
thanks!
JL
If you have a server-side language installed, that would be better; however, if you don't, you'd use Javascript like so:
If Alabama were selected, the user would be sent to alabama.htm; if Michigan were selected, the user would be sent to michigan.htm, and so on.HTML Code:<select id="state"> <option value="alabama.htm">Alabama</option> <option value="michigan.htm">Michigan</option> <!-- ... and so on ... --> </select> <button onclick="window.location.href=document.getElementById('state').value;">Go</button>
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Bookmarks