Hmm. that page isn't the "official" page for $.post(). I just set up a redirect for it so it would go to this one instead:

http://docs.jquery.com/Ajax/jQuery.post#urldatacallbacktype

--Karl

____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com




On Feb 10, 2009, at 11:18 PM, humanclock wrote:


Hey, I couldn't tell if this should get posted here or in Trac, so I'm
posting it here.

I wanted to point out a bug in the docs:
http://docs.jquery.com/Post

      function(returned_data)
        {
        alert(data);
        });

should be:

      function(returned_data)
        {
        alert(returned_data);
        });

Reply via email to