Creating dynamic text using custom fonts

I've just had a little search around the web and found this beuty - created by Mike Davidson and Mark Wubben, "sIFR" uses a combination of flash, css and javascript to display custom fonts on your web page.

Check it out here

Header logo that's accessibility friendly

Here is a short tutorial to add a logo/title to your webpage that will view nicely with images/css switched off

[More]

html input value dissappear

Just a quick one - if you wanted a message to appear in an input field, but then have it dissappear when clicked, then simply use this code:

<input type="text" name="field" value="this message" onClick="if(this.value == 'this message'){this.value=''}" />

The onClick event calls javascript to replace the value (this.value) with whatever is entered inside the quotes, in this case a blank string. 

Hide bottom scrollbar

For hiding the bottom (or left) scrollbar when using overflow:scroll

 

[More]

BlogCFC was created by Raymond Camden. This blog is running version 5.9.1.002. Contact Blog Owner