Skip to content

Instantly share code, notes, and snippets.

View GAV1N's full-sized avatar

Gavin Todes GAV1N

  • Unchained Capital
  • Austin, TX
View GitHub Profile
var placeholders = function () {
var body = $(document.body),
inputs = $("label.ui_placeholder").map(function () {
var label = $(this),
input = $("#" + label.attr("for"));
if (input.val()) {
label.hide();
}