Posts Tagged ‘Form’

Button Switches With Checkboxes and CSS3 Fanciness

CSS, JavaScript | Posted by Keefr October 20th, 2012

Here’s a cool little demo utilizing CSS3, form elements and a single line of JS.

Button Switches With Checkboxes and CSS3 Fanciness

Form-Field Validation: The Errors-Only Approach

HTML, JavaScript | Posted by Keefr June 28th, 2012

Love this write-up from over at Smashing Magaizine’s subdomain, uxdesign. It circles around on usability and where and when to use different validation techniques with your web sites’ forms.

Form-Field Validation: The Errors-Only Approach

Full CSS3 HTML5 Contact Form with No Images

CSS, HTML | Posted by Keefr January 30th, 2012

Pretty impressive how far we’ve come — HTML and CSS’s latest versions allow us to do so with minimal code and minimal images. In this case, no images are needed.

Full CSS3 HTML5 Contact Form with No Images

Textarea Auto Resize

CSS, JavaScript, jQuery | Posted by Keefr January 16th, 2012

Forms always are hard web elements to balance — usability, design and the like are all a little tougher when it comes to forms.

This is a nice solution to make textareas expand as needed.

Textarea Auto Resize

Stuff You Can Do With the “Checkbox Hack”

CSS, Web Design, Web Development | Posted by Keefr December 30th, 2011

I had never heard of the “Checkbox Hack.” Had you? I guess in some projects, I’ve used it, just didn’t know it had an official name.

Same thing with CSS image sprites. I had been using them for several years before I knew they had an official name. In fact, I found out during a job interview several years back. Never used image sprites. They explained the concept. Oh yeah, do that all the time.

Anyway, this is another informative post from the guys over at css-tricks.com. Basically the checkbox hack is where you use and style the associated label to a checkbox as the click event and hide the actual checkbox which isn’t as susceptible to nice styling.

Stuff You Can Do With the “Checkbox Hack”

Auto-Save User’s Input In Your Forms With HTML5 and Sisyphus.js

HTML, JavaScript | Posted by Keefr December 10th, 2011

This is a great idea via Smashing Magazine’s newish coding subdomain. It’s an especially good idea on some of the more involved forms I’ve experienced on the web lately. It’s basically a technique to autosave form contents by using the newest standard of HTML and a bit of JavaScript.

Auto-Save User’s Input In Your Forms With HTML5 and Sisyphus.js

Design a Beautiful CSS3 Search Form

CSS | Posted by Keefr November 22nd, 2011

CSS3 is such a watershed for improving the look and feel of web sites. Forms have always been a pain in the butt to wrangle in, and still are, but I love the things CSS allows you to do to make them not look so plain, and well.. default.

Design a Beautiful CSS3 Search Form

New Approaches To Designing Log-In Forms

HTML, User Experience (UX), User Interface (UI), Web Design | Posted by Keefr September 2nd, 2011

Smashing Magazine does another great in-depth writeup. This one is on the evolution of the log-in on sites. They’ve put a lot more thought and analysis into it than most designers, developers and web site owners tend to do.

New Approaches To Designing Log-In Forms

Progressively Enhancing HTML5 Forms

HTML | Posted by Keefr March 14th, 2011

So one of the under-publicized of HTML5 (or now just HTML *grumble*) is the enhancements and additions the fifth version allows for building, and ultimately styling forms.

Progressively Enhancing HTML5 Forms

In-Field Labels jQuery Plugin To Liven Up Your Forms’ UI

jQuery | Posted by Keefr February 4th, 2011

I’ve been trying to wrap my head around what people have already done around jQuery and there are some amazing things. It’s not all whiz band huge stuff, either but rather some nice enhancements to the user interface and user experience. Below is an example of that — taking the popular spacing-saving form design of putting your labels within your text fields. jQuery though is used to fade these out as the given text field becomes active, and also replaces the label if the user erases the content. Like I said, it’s not whiz bang, just nice polish.

In-Field Labels jQuery Plugin