This worked (well it was a bit different) but now it seems like this code 
isn't even considered.

<html>
<form>
Recipient:<br> <input type="text" name="recipient" /><br>
Subject:<br>   <input type="text" name="subject" /><br>
Message:<br> <textarea name="message" cols="40" rows="5">
</textarea><br>
<input type="button" value="Submit" onclick='
   var Subject = this.form.subject.value;
   var Recipient = this.form.recipient.value;
   var Message = this.form.message.value;
   var now = Date.FormatString(0hh0mm0ss);
   var newMessage = new Tiddler(Recipient + "-Msg-" + now);
   newMessage.title = (Recipient + "-Msg-" + now);
   newMessage.text = "| " + Subject + " ~||\n"+ "| "Message +"| ";
   store.saveTiddler(newMessage);
   story.displayTiddler(newMessage);
   this.form.subject.value = "";
   this.form.recipient.value = "";
   this.form.message.value ="";
' />
</form>
</html>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/kIosJfXYRjQJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to