I have already changed css with jQuery, but I would like to test a feature, in onclick it add a css but a :before
field how could I do that?
Working Code
$j("#nome-login-mobile").click(function(){
if ($j('#options-menu').is(':visible')) {
$j('#options-menu').hide();
$j('.nome-login-mobile').removeClass('changed');
} else {
$j('.nome-login-mobile').toggleClass('changed');
$j('#options-menu').show();
}
})