[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Christopher Jordan
Also, Brian, $.post() has been deprecated in favor of $.ajax(). where you would write something like: $.ajax({ type: 'POST', url: 'page.php', datatype: 'html', // or json, or xml or script depending on what's getting returned data: {'name':'Joe', 'age':'24',...},//also I think you

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Christopher Jordan
Hmm... I just read that today, or last night I think. Okay. I'll put up or shut-up. I'll try and find where I read that. :o) Chris Karl Swedberg wrote: I could be wrong, but I don't think $.post() is deprecated. --Karl _ Karl Swedberg www.englishrules.com

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Christopher Jordan
Karl, Rob Gonda made the comment on his blog http://www.robgonda.com/blog/index.cfm/2007/5/15/AjaxCFC-fastSerialize-example#comments in responding to one of his readers. He said: ... BTW, the $.post() function was deprecated with jQuery 1.1 in favor for .ajax(). That's where I read it.

[jQuery] Re: getJSON() or post() parameter question

2007-05-17 Thread Ⓙⓐⓚⓔ
$.ajax is much cooler that the simpler $.post Deprecated doesn't mean it won't work... it just means May not work on a future release, someday $.post will alway be available, either in the core or in a compat plugin. On 5/17/07, Brian Ronk [EMAIL PROTECTED] wrote: Depreciated? On the