You can't. Posting data back to the server means sending it to a server script, not an html page (which is evaluated at the client). You'll need to post your data to, eg. a PHP script which, in turn, outputs the contents of that 2nd html page.
On Mon, Jun 15, 2009 at 4:04 AM, ciupaz<luigi.zambe...@gmail.com> wrote: > > Hi all, > using this plugin: > > http://docs.jquery.com/Ajax/jQuery.post > > how can I read the values from the other page? > > For example, using: $.post("test.htm", { name: "John", time: > "2pm" } ); > > in the page test.htm how can I read these value and setting some > label? > > Thanks in advance. > > Luis