Results 1 to 4 of 4

Thread: how would you code a second button???

  1. #1
    Join Date
    Jul 2005
    Posts
    40
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default how would you code a second button???

    I already have a button function in place on a page. Now, I'd like to add a second button. Since I am new at this, I can't seem to figure out the right coding to do so.

    I need your help... again!

    thanks

    JL

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    A button can be made with <button>Click Me</button> or <input type="button" value="Click Me"/>. If you want it to do anything more, you'll have to link to the page in question or post your code (in [code] tags please!).
    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!

  3. #3
    Join Date
    Jul 2005
    Posts
    40
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    yeah, i meant to also say that I would like to create a "second button" to click on to link to another page.

    thanks..

    JL

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Ah, right. Rather than actually using a button, I suggest using a link styled to look like a button. This will be better for non-JS browsers, and will also allow you more control over the "button's" appearance.
    HTML Code:
    <a href="page.htm" style="cursor:default; background-color:grey; border-width:10%; border-style:outset;" onmousedown="this.style.borderStyle='inset';" onmouseup="this.style.borderStyle='outset';">Click Here</a>
    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

Posting Permissions

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