In that case you want to use $ajax to post to a server side script that'll handle the comment posting and return an XML/JSON response to let the browser know if the operation was a success. On the server side what you do with the AJAX request depends on the scripting language, but if it's PHP then you'd look at $_GET or $_POST depending on the ajax method you use.
On May 16, 8:05 am, Sid <[EMAIL PROTECTED]> wrote: > I basically want to make my own Comments system. So, its server side > writing. > > Writing to the client machine is possible using the FileSystemObject, > but I don't think its possible on browsers other than IE. > > On May 14, 7:26 pm, Gordon <[EMAIL PROTECTED]> wrote: > > > If ou mean writing to a file on the server, yes it's possible with > > AJAX but will require some cleverness. it's a bit mroe complex than > > just submitting a form. > > > If you mean on the user's machine, javascript is deliberately > > prevented from writing anything but cookies. > > > On May 14, 10:59 am, Sid <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > I want to write data entered by users to a php/html/txt file. > > > > Is this possible using jQuery? > > > > Regards