I’m preparing to work on a new site design that I want to incorporate some accessibility into and in doing so, wanted to take a look at one of my favorite accessibility sites’ stylesheet—456 Berea Street. Roger, in my opinion is an accessibility guru and I learn a lot from him.
Over at Web Design From Scratch Ben Hunt talks about Royalty-Free Image Libraries and makes some suggestions to paid services. I think his suggestions are worthwhile and you will need to end up belonging to one of the subscription services he suggests. However, I thought I’d share a few links to free services I use […]
This is actually quite an easy task but when I need to do it, I often forget what the code is, so I’m putting it here for posterity.
<input type="text" name="text_field" size=50 value="Fill in this text field! " onClick="this.value=”"/>
Stu Hall adds:
You can use:
onfocus=”if(this.value==’Fill in this text field!’)this.value=”;” onblur=”if(this.value==”)this.value=’Fill in this text field!’;”
…to put the text back […]