Adding a "scribble" note to a page

I am trying to add a scribble note to a page. The user can write on the note and this is remembered. The following code works fine in a browser but when I compile it I get an “HE Server cannot download from Internet Explorer” error when I try to delete the note. I think the fault is in the script highlighted in red below. Can anyone tell me how this can be made to work?

#scribble-pad { margin-left:auto; margin-right:auto; height: 235px; width: 245px; background-image:url('picts/stickynote.jpg'); background-repeat: no-repeat }

#scribble {
white-space: pre-wrap; /* css-3 /
white-space: -moz-pre-wrap; /
Mozilla, since 1999 /
white-space: -pre-wrap; /
Opera 4-6 /
white-space: -o-pre-wrap; /
Opera 7 /
word-wrap: break-word; /
Internet Explorer 5.5+ */
max-width: 220px;
padding: 50px 60px 100px 20px;
color: #486891;
font-family: Arial,sans-serif;
font-size: 60%;
font-style: italic;
font-weight:bold;
line-height: 1.5em;
}

.c-link {
color: #486891;
font-family: Arial,sans-serif;
font-size: 95%;
font-weight:bold;
text-decoration: none;
}

Clear local storage

What is localStorage in your JavaScript code?

HTML5 local storage. Basically, it is a client-side database. That is a database that resides in the users browser and not on a server. Perhaps this isn’t supported in your book compiler?

HTML is only supported if you are using IE9… If you want to use a storage, please try HEScript instead and store your data in the local application folder as files.