I would like to call a function from the jQuery Click event. I tried the annotation below which doesn't work.
$(".menu_link").click(GetContentAndSlide());
What is the right annotation?
$(".menu_link").click(GetContentAndSlide);
remove the (), you are executing the function, instead of passing the function reference.
Another option would be (in case your function uses the this pointer) to wrap it around with a anonymous function:
$(".menu_link").click(function() {GetContentAndSlide()});
$(".menu_link").click(GetContentAndSlide);