I am wondering how I should declare a function in a jQuery script.
What I've got now:
function adjust_menu() {
alert("test test");
};
but when I call it like this:
("#first_link").click(function() {
adjust_menu();
});
it doesn't work. What am I doing wrong?