Probably you are missing to specify event
as function argument, try specifying that too:
$("#backLink").click(function(event) {
event.preventDefault();
history.back(1);
});
In other words, you had problem on event.preventDefault();
which most likely prevented below code from running or working.