Archive for July, 2010


I’m often trying to help friends in San Luis Obispo find good tech jobs.  Here’s a list of companies I’ve compiled and links to their job pages:

Good luck and happy job hunting!

This quick little script will swap out your default value in either a search field or wherever and replace it with nothing when clicked on. Short, simple and to the point. If you need something a bit more robust take a look at Default Value plugin.

$(document).ready(function() {
$("#tagname").focus(function() {
if (this.value == this.defaultValue) {
this.value = "";
}
});
$("#tagname").blur(function() {
if (this.value == "") {
this.value = this.defaultValue;
}
});
});