[Help] I would like to know how, in HTML, I could add a "notes" feature into my webpage... Updates to this post /post/214370-i-would-like-to-know-how-in-html Wed, 25 Nov 2009 00:24:25 +0100 Reply from messymeese /post/214370-i-would-like-to-know-how-in-html#reply-4452373 This is the OP, by the way…

P.S.
I want the note feature to be available offline.

]]>
messymeese Thu, 06 Nov 2008 06:44:44 +0100
Reply from messymeese /post/214370-i-would-like-to-know-how-in-html#reply-4452343 I want it to appear IN my page, not pop-out.

Gabz, what you said is just what I want, except, it won’t keep the text when I come back to it… How can I make it do that?

Thanks!

]]>
messymeese Thu, 06 Nov 2008 06:36:21 +0100
Reply from Anonymous /post/214370-i-would-like-to-know-how-in-html#reply-4447968 You can’t save to file from plain HTML. You could use an applet like JNote(http://javaboutique.internet.com/JNote/) or do it in javascript: something like this…
fh = fopen(getScriptPath(), 0); // Open the file for reading
if(fh!=-1) // If the file has been successfully opened
{
length = flength(fh); // Get the length of the file
str = fread(fh, length); // Read in the entire file
fclose(fh); // Close the file

// Display the contents of the file
write(str);
}

]]>
Anonymous Wed, 05 Nov 2008 10:22:07 +0100
Reply from Ξ.Ģäβž.Ξ /post/214370-i-would-like-to-know-how-in-html#reply-4447962 lol. Code to generate a comments box for her web page.

]]>
Ξ.Ģäβž.Ξ Wed, 05 Nov 2008 10:17:48 +0100
Reply from Nezputa /post/214370-i-would-like-to-know-how-in-html#reply-4447860 great Gabz now i’m even confused.

]]>
Nezputa Wed, 05 Nov 2008 09:28:05 +0100
Reply from Ξ.Ģäβž.Ξ /post/214370-i-would-like-to-know-how-in-html#reply-4447851 Comments box with scroll bar:

textarea cols=”50″ rows=”4″ name=”comment”> //text area>

]]>
Ξ.Ģäβž.Ξ Wed, 05 Nov 2008 09:22:42 +0100
Reply from Ξ.Ģäβž.Ξ /post/214370-i-would-like-to-know-how-in-html#reply-4447830 Like with a scroll bar on the side of the comments box ?

]]>
Ξ.Ģäβž.Ξ Wed, 05 Nov 2008 09:09:53 +0100