scriptygoddess RSS Feed
 
 
 
 

Archive for September, 2008

Overlapping Tabbed Navigation using CSS and jQuery

Recently had a project land on my desk that required tabbed navigation that overlap one another. Just so we're clear on what we're doing: here's the demo. Here is how I did it:
1) Each tab has four "states" - Off, Off (with right tab on), On, On (with right tab on). I combined each of [...]

New Theme

Finally decided on a theme. I do have some thoughts for making one of my own, but I still have no time to do it. (And when I do have time, I'm usually too exhausted to want to work on it) SO, I've been shopping around for something to use in the interim. This one [...]

jQuery Method for Validation Plugin - "field must include at least one number"

Here's a method you can use with the validation jQuery plugin to make sure a field (like a password field) includes at least one number.
$.validator.addMethod("atleastonedigit", function(pass) {
if (pass == "") {
return true;
}
return ((/[0-9]+/).test(pass));
}, "This field must contain at least one number");

You are currently browsing the scriptygoddess blog archives for September, 2008.

Categories

Archives

Bookmarks

WordPress Resources

Meta

Random Stuff