function resetData() {
      $("input[type=text]").each(
      function() {
     $(this).attr("value","");
      }
      );
  }

05-23 23:23