this is what i had in mootools so far working on FF and Safari... FORM: <form id="newComment" action="add.php" method="post" onSubmit="Comment.submit(); return false;"> <input type="hidden" name="comment_postid" value="<?= $rowPost[post_id]?>" /> <input type="hidden" name="type" id="type" value="1" /> <input name="author" type="text" class="texto" id="author" size="30" /> <br /> <?php } else { ?> <input type="hidden" name="author" id="author" value="<?= $_SESSION[user_name];?>" /> <input type="hidden" name="email" id="email" value="<?= $_SESSION[user_name];?>" /> <?php } ?> Mensaje:<br /> <textarea name="content" cols="40" rows="8" class="texto" id="content"></textarea><br /> <input type="submit" class="boton" value="Agregar Comentario →" /> </form>
On Sep 24, 5:42 am, MorningZ <[EMAIL PROTECTED]> wrote: > I'm not sure you want/need to start looking at Plugins right away for > such an easy task > > My suggestion is to head over to the docs (http://docs.jquery.com), > pull up the "Ajax" section and take a load at the $.ajax and $.load > methods to start with