I have a slide toggle menu but can only place the word "MENU" in the javascript but would like to add an icon next to it.
How do I go about adding <i class="fa fa-bars"></i>
next to the word MENU?
$(document).ready(function(){
$(".slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').toggle(function(){
$("#plus").text("MENU");
$(".slidingDiv").slideDown();
},function(){
$("#plus").text("MENU");
$(".slidingDiv").slideUp();
});
});