$(document).ready(function() { $("#btn_cambiar").on('click', function(event) { event.preventDefault(); if($('#show_hide_password input').attr("type") == "text"){ $('#show_hide_password input').attr('type', 'password'); $('#show_hide_password i').addClass( "fa-eye-slash" ); $('#show_hide_password i').removeClass( "fa-eye" ); }else if($('#show_hide_password input').attr("type") == "password"){ $('#show_hide_password input').attr('type', 'text'); $('#show_hide_password i').removeClass( "fa-eye-slash" ); $('#show_hide_password i').addClass( "fa-eye" ); } }); $("#btn_cambiar").on('focus', function(event) { $("#btn_submit").focus(); }); });