Textualizer という jQuery プラグインを使用しており、HTML フォームを介してデータを追加したいと考えています。
コードは次のとおりです。
<html>
 <head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="textualizer.min.js"></script>
</head>
<style type="text/css">
#txtlzr{color:#585856; font-size:50px; width:1200px; height:100px;
margin-left:10%;
margin-top:80px;
font-family:"futura";
position: fixed;
}
</style>
<body>
<div id="txtlzr"></div>
<form action="#" method="post"/>
            <input class="kwote" type="text" maxlength="40" id="kwote" placeholder="Enter a something here."/>
            <input class="name"  type="text" maxlength="17" id="name" placeholder="Enter your name."/>
            <input class="post" type="submit" value="Post"/>
 </form>
 </body>
<script>
 var stuff1 = ['"random comment-person1', '"random comment"- person2'];  // list of blurbs
 var txt = $('#txtlzr');  // The container in which to render the list
 var options = {
 duration: 5,          // Time (ms) each blurb will remain on screen
rearrangeDuration: 5, // Time (ms) a character takes to reach its position
effect: 'random',        // Animation effect the characters use to appear
centered: true           // Centers the text relative to its container
 }
   txt.textualizer(stuff1); // textualize it!
   txt.textualizer('start'); // start
  </script>
 </html>
これは完全なコードであり、jquery ファイルと textualizer ファイルがリンクされているか、html のあるディレクトリにある限り機能します。
textualizer: http://kiro.me/textualizer/javascript/textualizer.min.js