Hello I am just getting into writing functions and I think I am a bit over my head. The javascript console is stating
Uncaught Error: Syntax error, unrecognized expression: "#insert the jsfiddle url"
Since I don't have enough reputation I cannot post two links, but where "insert the jsfiddle url" is the jsfiddles url, it becomes the url of any site I run this code on.
Here is the code is the code for it:
function menuclick(menuitem, menucontent) {
$('"#' + menuitem + '"').click(function() {
$('#cssmenu').hide();
$('"#' + menucontent + '"').show();
$('#goback').show();
})
};
menuclick(aboutlink, aboutcontainer);