bakineggs (owner)

Revisions

gist: 184339 Download_button fork
public
Public Clone URL: git://gist.github.com/184339.git
Embed All Files: show embed
clicky_make_text_gone.js #
1
2
3
4
5
6
7
8
$(document).ready(function() {
  $('input[type=text]').each(function() {
    original_val = $(this).val();
    function replace(el, o, r) { if (el.val() == o) el.val(r); }
    $(this).focus(function() { replace($(this), original_val, ''); });
    $(this).blur(function() { replace($(this), '', original_val); });
  });
});