$(document).ready(function() { /* * Clear values of name and password on click */ $("#name").click(function() { if ($(this).val() == "name") { $(this).removeAttr("value"); }; }); $("#pass").click(function() { if ($(this).val() == "password") { $(this).removeAttr("value"); $(this).prop({"type": "password"}); }; }); $("select").change(function() { continue; }); });