Tagged Questions
24
votes
11answers
2k views
Why is JSON important?
I've only recently heard about JSON (Javascript Object Notation).
Can anybody explain why it is considered (by some websites/blogs/etc) to be important?
We already have XML, why is JSON better (apart ...
2
votes
4answers
188 views
jQuery changing data format from string
I have this string:
2010-09-21T15:48:12.754+02:00
I would transform it in this format:
Tue Sep 21 15:48:12 CEST 2010
How can I do it with javascript or jQuery?
Thanks a lot.
MP.
1
vote
2answers
114 views
The best format of data to send from browser to the java-based server with ajax?
I don't have a big experience in this kind of things, so I see the easiest way is sending key-value pairs as post parameters and then servlet container will parse these pairs and put to the parameters ...