- BRINGING IN SEPARATE PARAGRAPHS FROM WORD
- FOCUS YOUR ATTENTION RIGHT HERE
- WATCH OUT FOR KILLER OCTOTHORPES
- HEADING THIS WAY
- RESCALING AN IMAGE IN DREAMWEAVER
- QUICKLY CLEARING A PAG
- FINDING YOUR ASSETS IN A DARK ROOM (WITHOUT A FLASHLIGHT)
- EVERYBODY, COME ON AND DO DA COMBO, MON!
- CLOWNS TO THE LEFT OF ME, JOKERS TO THE RIGHT...
- ZIPPY FORM ORGANIZATION WITH THE FIELDSET TAG
- WHERE, OH, WHERE HAVE MY WINDOW SIZES GONE?
- STAYING IN GOOD FORM
- PLAYING NICE WITH THE INSERT BAR
- "A" IS FOR ACCESSIBLE APPLETS
- MULTIPLYING RADIO BUTTONS
- FANCY-SCHMANCY FORM BUTTONS
- LABEL-LICIOUS
- BUTTON, BUTTON, WHO'S GOT THE BUTTON?
- ANCHORS AWAY
- BYE, BYE HELPER TEXT
- THAT'S WHAT IT'S ALL ABOUT
- JAVASCRIPT REQUIRED
- TRANSFERING SITES
- NO MORE BROKEN LINKS
- REUSABLE JAVASCRIPT
- VIEW AS ROOT
- INITIALLY SELECTED VALUE
- REQUIRING INPUT
FANCY-SCHMANCY FORM BUTTONS
Looking to spice up a boring form? A common element to all forms is the Submit buttonand its standard appearance is definitely commonplace. You can replace the ordinary gray button with a graphic button in one of two ways. If your form has only a Submit button, with no reset or other type of button, you can use an image field. You can add an input image using the Image Field object found in the Forms category of the Insert bar. When users select an image field (that's inside a form), the form is automatically submitted. There is a drawback to using image fieldsyou can't use them for other purposes, like resetting a form. The second method uses JavaScript. In this technique, you bring in a regular image to act as your Submit button and give it a link like this: javascript:document.form1 .submit(), assuming that your form is named form1. If you want to use another graphic to clear a form, just change the link to javascript:document.form1.reset(). Not only do these types of buttons display the pointing hand icon, but you could also include rollover images if you like.