20 Sep, 2008
Posted by: Jennifer In: CSS|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 […]
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 […]
Comments Off on New Theme
07 Sep, 2008
Posted by: Jennifer In: jquery
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");