I am very new to javascript and I am looking very often on the internet for guides and explanation. The one thing that keeps on coming back is this $ sign in the code. I can not get my head around what this means. Is this only used in an older version of js?
Here is an example of code.
$(document).ready(function(){
//initial
$('#content').load('content/index.php');
});
//handle menu clicks
$('#Kevin li a').click(function(){
alert("hi");
});
});