$('#menu-toggle').click(function() {
var remove = '<i class="fa fa-fw fa-times" aria-hidden="true"></i>';
var contentMenu = $(this).html();
if ( remove == contentMenu ) {
$(this).html('<i class="fa fa-fw fa-bars" aria-hidden="true"></i>');
}
else {
$(this).html(remove);
}
});