I want to change the hamburger icon of my menu to a close icon when clicked and vice versa.
It comes down to toggling: #nav-toggle-main:before to #nav-toggle-close:before
This is the CSS:
#nav-toggle-main:before {
float: left;
content: '\f0c9';
font-family: FontAwesome;
padding: 16px 10px;
}
#nav-toggle-close:before {
float: left;
content: '\xf00d';
font-family: FontAwesome;
padding: 16px 10px;
}
Looks impossible with toggleClass. Anyone have a solution?