I\'m trying to figure out how to target every input(text and password) field on all forms on the page document to remove the default value when on focus with this single script:
Get all the input type text value:
$("input:text").each(function() { alert($(this).val()); });
Get all input type password value:
$("input:password").each(function() { alert($(this).val()); });