5
votes
2answers
2k views

jQuery plugin $(node).toJSON() - convert html form to JS Object

GitHub project repo I've been working on this little function to convert an HTML form into a JSON Object having the same structure of the form. Basically it is intended to be useful in those ...
4
votes
1answer
2k views

How to exactly work with the JSON Object and jQuery, adding info to posts

I have been working with AJAX and JSON for quite some years now, but to be honest I still do not know exactly what all the functionality are, and how to create optimized code for jQuery. So my first ...
3
votes
1answer
4k views

Getting JSON with jQuery and creating lists with click events calling more jQuery and JSON

I have two elements on my page: <ul id="VerticalMenu></ul> <ul id="AccordionMenu"></ul> I'm calling some JSON with jQuery and loading elements in the divs. I'm curious if ...