The following code is causing the page to scroll down to the bottom of the page. How do I prevent the page from scrolling in this situation?
// If note is clicked, then append id as hashtag at end of url
$("span.note").click(function(e){
e.preventDefault();
window.location.hash = $(this).attr('id');
});