[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread Dan G. Switzer, II
In what respect? jQuery can already consume JSON data - and it can serialize it back to a query string. If the JSON serialization plugins start getting used enough (which they aren't) then we may consider moving them into core. I'd agree with John that the number of times you need full

[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread Sean Catchpole
This would be a wonderful application for a download builder. The core should remain exactly that, a core. ~Sean

[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread SeViR
howa escribió: What do you think? I think json is quite a standard way in developing javascript/ajax apps now. I don't like JSON inside the jQuery code, because, WHY? if I download JSON responses from my server, I simply use var mydata = eval((+response+)); I don't need any cleaner

[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread howa
serveral reasons: 1. json will become part of the JavaScript Programming Language in the Fourth Edition of the ECMAScript standard, we should encourage using it 2. jquery getJSON() is not too secure, e.g. data = eval(( + data + )); 3. size is not that large. 1.x kb only On 8月7日, 下午9時22分, John

[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread John Resig
Perfect for a plugin, then! :) On 8/7/07, howa [EMAIL PROTECTED] wrote: serveral reasons: 1. json will become part of the JavaScript Programming Language in the Fourth Edition of the ECMAScript standard, we should encourage using it 2. jquery getJSON() is not too secure, e.g. data = eval((

[jQuery] Re: Move JSON into the JQuery's core?

2007-08-07 Thread howa
even that, made this as an offical plugin would be good. :) On 8月8日, 上午10時35分, John Resig [EMAIL PROTECTED] wrote: Perfect for a plugin, then! :) On 8/7/07, howa [EMAIL PROTECTED] wrote: serveral reasons: 1. json will become part of the JavaScript Programming Language in the