$(document).ready (function() {
  $("input").focus(function(){
    $(this).attr("value", "");
  });
});