jQuery(function ($) { $('.woocommerce form.woocommerce-form .woocommerce-form-row span.password-input').append( "
"); $('.woocommerce form.woocommerce-form .form-row-last').append( " "); }); jQuery(function($){ $(".toggle-password").click(function() { $(this).toggleClass("fa-eye fa-eye-slash"); var input = $($(this).attr("toggle")); if (input.attr("type") == "password") { input.attr("type", "text"); } else { input.attr("type", "password"); } }); });