I new to JavaScript/jQuery and I've been learning how to make functions, but a lot of functions have cropped up with (e) in brackets. Let me show you what I mean:
$(this).click(function(e) {
// does something
}
It always appears that the function doesn't even use the value of (e), so why is it there so often?
