Right now the following code works, but the notification bar I have disappears if you refresh the page. It should only disappear if the user clicks the close button, but I am not sure how to do that.
jQuery(document).ready(function($) {
var showHowTo = localStorage.getItem("firstvisit");
if(!showHowTo) {
// Stores visit
localStorage.setItem("firstvisit", true);
$('#how-to').show();
} else {
$('#how-to').hide();
}
$("#close").click(function(){
$("#how-to").hide();
});
});