css Tooltips :: tutorial
A slick way to make rollover tooltips with nothing other than a little css and some html - also works well for image thumbnail rollovers as well In the past, I have made tooltips with JavaScript, and...
View Articlebest javascript toggleDiv function ever
Everyone has a javascript toggleDiv function somewhere, but this is the cleanest one you will ever see All this is is an expand and collapse of whatever you want it to expand/collapse - it is made for...
View ArticleSticky Footer using only css/html (works in IE)
For a long time, I tried with no avail to get a sticky footer that would work in IE, here is a slick way around IE's incompatibility For css, all you need is this: * { margin: 0;} html, body { height:...
View ArticleIconize Textlinks with CSS
This is a great way to add a little visibility to your users, it adds an icon next to your file links, showing them visually what it is I take no credit at all for this, all the credit belongs to...
View ArticleRounded Text Box Inputs - Slick looking and customizable
Great looking 'web 2.0' (god I hate that term) rounded textboxes - fully adjustable to the length of your textbox using css 'sliding doors' I saw some of these rounded textboxes somewhere (?) and I...
View ArticleHTML/JavaScript Dropdown List Redirect
Recently on a forum the question was asked how to redirect using a dropdown and not using any server side scripting - the answer turns out to be pretty simple All that is needded is a simple Javascript...
View Article'Auto-tabbing' to next TextBox with asp.net and Javascript
If you have a form that limits characters entered into a textfield, using this simple approach you can automatically jump to the next control, making it easy for your user Say you have a zip code field...
View ArticleText Input Watermarks using Javascript (IE Compatible)
Simple way to add watermarks to your textboxes for a little flair in your input forms I have always used the TextBoxWatermark control that is supplied with the AjaxControlToolkit which is very easy to...
View ArticleCSS image map with rollovers :: map of the United States
A fully interactive image map of the united states using pure CSS; great rollover technique I had actually written this in 2006, but I saw this technique used recently and apparently it's a 'new'...
View ArticleUsing html label tags with asp.net
I am amazed to see how many asp.net programmer do not use this The label tag is extremely useful and easy to use, it boggles my mind why more Asp.Net devs do not use it. Remember, I am talking about...
View Articleis for image, sprite image
a slightly modified, very simple approach to css sprites i {background:url(http://naspinski.net/image.axd?picture=demo_sprites.png) no-repeat; width:24px; height:24px; display:inline-block; } i.danger...
View ArticleCreating Nice '|' Divided Menus with CSS
it is common for websites (this one included) to have the ubiquitous '|' as a link divider, here is a neat way to do it with pure css To get this menu: ul#nav { list-style:none; } ul#nav li{...
View Article