JSFiddle - React, Tailwind, and code Playground

by r3wt

HTML

<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<label>Name</label>
<input name="name" type="text" />
<label>Password</label>
<input name="password" type="password" />

JavaScript

$(function(){
  var targets = $('[name="name"], [name="password"]');
  
  targets
  .one('change',stopFFAutocomplete)
  .one('focus',removeFFAutocomplete);
  
  function stopFFAutocomplete()
  {
      $(this).val('');
  }
  function removeFFAutocomplete()
  {
  	targets.off('change',stopFFAutocomplete);
  }
});