Skip to content

Instantly share code, notes, and snippets.

View spsaucier's full-sized avatar

Stephen Saucier spsaucier

View GitHub Profile
// Inline Labels
// -------------------------------------------------- //
$('input, textarea').each(function() {
var self = $(this),
label = $("label[for='" + self.attr("id") + "']").hide().text();
// Replace initial values
if (!self.val().replace(/^\s+/g, "").length) {