<input type="submit" value="Нажми меня"/>
<input type="text" style="display: none;" />
$("input[type=submit]").click(function() {
$("input[type=text]").toggle();
});
$('body').on('mousedown', '.fav-add', function() {
$(this).removeClass('fav-add');
$(this).addClass('fav-remove');
});
$('body').on('mousedown', '.fav-remove', function() {
$(this).removeClass('fav-remove');
$(this).addClass('fav-add');
});