Search the web
Sign In
New User? Sign Up
json · JSON JavaScript Object Notation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 839 - 869 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
839
Hi, Now I built some mashup using JSON. Sometimes, I want to block the script to be executed. I want to remove the script dynamically added to prevent it from...
ericazhangjun
Offline Send Email
Aug 1, 2007
3:48 pm
840
I changed the way that json.js calls the hasOwnProperty method. A design flaw in JavaScript causes hasOwnProperty to fail when an object contains a property...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 5, 2007
8:30 pm
841
I'm proud to announce that MJSON v0.5 has been released! MJSON is Maciel's JSON parser, a small light-weight library that handles documents written in the JSON...
rui.maciel
Offline Send Email
Aug 8, 2007
4:42 pm
842
Hi,I have difficulties to parse this json {depth1:{depth2:{depth3:'content'}}} how to get the 'content'?? using ajax?...
genzoeri
Online Now Send Email
Aug 15, 2007
1:52 am
843
well you don't get "content" using ajax. You get "content" using javascript... if that json string was assigned to a variable foo... var foo = {depth1 : {...
crzy4c
Offline Send Email
Aug 15, 2007
2:10 am
844
... That's not valid JSON, for two reasons: 1) Key names are strings, and must be quoted as such. 2) Strings must be quoted with double quotes, not single...
Martin Cooper
mfncooper
Online Now Send Email
Aug 15, 2007
2:13 am
845
I will use this for my AJAX. Using responsetext properties from XHR. ... btw, thank you for your response. I am glad, I am on the right place....
genzoeri
Online Now Send Email
Aug 15, 2007
6:35 am
846
Key names must be quoted and cant start with a number?Is that right?To: json@...: mfncooper@...: Tue, 14 Aug 2007 19:11:32...
Mark Ireland
akaidr4vr
Offline Send Email
Aug 15, 2007
7:01 am
847
... This should help: eval("var responsejson = (" + responsetext + ");"); alert(responsejson['depth1']['depth2']['depth3']; ... Yes. -mike. ... michal...
Michal Migurski
michal_migurski
Offline Send Email
Aug 15, 2007
8:18 am
848
... Ugh, don't do that. Apart from screwing with the scope of responsejson, it also causes a security problem, and it's overkill. If you must use eval, do it...
Philip Tellis
philiptellis
Offline Send Email
Aug 16, 2007
5:05 am
849
Hello folks, First, I'm relatively new to working with JSON so please bear with me. Here's the situation: I am attempting to use multiple callbacks all from...
Shorthouse, David
davidpshorth...
Offline Send Email
Aug 19, 2007
7:47 pm
850
The toJSONString methods can now take an optional whitelist parameter, an array of strings. It is used to select the properties that will be included in the...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 19, 2007
7:47 pm
851
The JSON.org page is now available in Dutch. http://json.org/json-nl.html...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 25, 2007
10:41 am
852
Hi, I have a JSON object which has a strcture like this : { "MainData": { "Company": { "Name":"ABC Ltd", "Address":"<address>" }, "Data": { "001": { "Name":...
mahesh_mission
Offline Send Email
Aug 26, 2007
12:59 pm
853
... avoid using eval. Just use the "in" operator" if(EmpNo in MainData.Company.Data) in checks for the existence of a key. -- hello world...
Philip Tellis
philiptellis
Offline Send Email
Aug 26, 2007
4:15 pm
854
Hi, It works fine now. Thanks a lot for your timely help!! ... function as ... present in...
mahesh_mission
Offline Send Email
Aug 26, 2007
5:25 pm
855
New constructors for JSONObject: JSONObject(Object bean) Make a new JSONObject from the getter methods of a bean. JSONObject(Object object, String names[]) ...
Douglas Crockford
douglascrock...
Offline Send Email
Aug 28, 2007
1:28 am
856
In the current process to improve JSONT I implemented a lightweight component JSONPath, which compares a lot to XPath. You can download it for Javascript and...
Stefan Gössner
stefangoessner
Offline Send Email
Aug 28, 2007
3:27 pm
857
JSONV- open-source format, based on jsons formats, as alternative to xml,css,xslt,rdf,owl,html presentation of information for the dynamic forming and...
wefnewtrhewlkfd9
wefnewtrhewl...
Offline Send Email
Aug 30, 2007
5:18 am
858
JSONPath looks very promising and close in spirit to the simplicity and effectiveness of JSON. I just finished an initial port and implementation in C# (should...
Atif Aziz
azizatif
Offline Send Email
Aug 31, 2007
11:25 pm
859
Collin Jackson has implemented a JSONRequest extention for Firefox. http://crypto.stanford.edu/jsonrequest/...
Douglas Crockford
douglascrock...
Offline Send Email
Sep 1, 2007
11:44 pm
860
I have problem receive JSON in server i want to use Servlet, i try to use blabla?json?<json> i got problem. is the answer is JSONRPC? anyone can help me to...
Frans Thamura
fthamura
Online Now Send Email
Sep 4, 2007
2:39 am
861
... I have a comment about the syntax. It is extremely easy to implement a JSON parser because the syntax is simple. In not only looks good, it is designed to...
Henrik Hjelte
jagarenbrape...
Offline Send Email
Sep 5, 2007
1:14 pm
862
... One design criterion of the JSONPath syntax proposal is, that simple expressions are also valid in Javascript. That applies to these two expressions above....
Stefan Gössner
stefangoessner
Offline Send Email
Sep 6, 2007
9:17 am
863
Hi, I'm interested in implementing the server side of JSONRequest, and I'm a bit confused by the JSONRequest.get description in the proposal. The sample server...
John David Duncan
jddefn
Offline Send Email
Sep 22, 2007
8:17 pm
864
... The current proposal can be found at http://json.org/JSONRequest.html...
Douglas Crockford
douglascrock...
Offline Send Email
Sep 23, 2007
12:19 am
865
... Yep, that's the one I'm referring to. Is the "JSONRequest" header supposed to be there, in this response? HTTP/1.1 200 OK Content-Type:...
John David Duncan
jddefn
Offline Send Email
Sep 23, 2007
1:08 am
866
... I see what you mean. No, that isn't supposed to be there. I have corrected it. Thank you....
Douglas Crockford
douglascrock...
Offline Send Email
Sep 23, 2007
3:31 am
868
Hi, I have a JSON object which has a strcture like this : { "MainData": { "Company": { "Name":"ABC Ltd", "Address":"<address>" }, "Data": { "001": { "Name":...
mahesh_mission
Offline Send Email
Sep 26, 2007
2:19 pm
869
... That form of eval is not in the ECMAScript standard. I recommend that you stick with the standard language....
Douglas Crockford
douglascrock...
Offline Send Email
Sep 27, 2007
1:39 pm
Messages 839 - 869 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help