1
vote
1answer
34 views

my first jquery/json

This is my first use of jquery and json so would be grateful for any feedback please. Background - this is on a job listing site and it has a Linkedin apply button plugin - this provides for a ...
-1
votes
1answer
82 views

ASP.NET MVC 4 Shopping Cart - Cannot update shopping car items using JQuery , Ajax, jSON, jGrid [closed]

I have this code in a C# MVC 4 VS2012 project. I need to be able to update the shopping cart with jSON data using JQuery/AJAX, i'm using jqGrid to display the data and pulling the shopping cart items ...
3
votes
2answers
61 views

Help with jquery form data code refinement

Could someone please help me make this code as professional as it can be? It works fine, it's just I look at it and think, 'there is surely a better way to do some of this', I would really appreciate ...
-1
votes
1answer
82 views

Why I need to use 2 functions, but not only one [closed]

I paste all of my code because it might have a connection with the function I am asking for. I had some problems with my parseJSON() function and someone helped me to make it work. Now I don't know ...
1
vote
1answer
33 views

How can I animate this foreach ajax call in jquery?

I have created an app in codeigniter that fetches some json data via ajax and displays it on the page. What i am trying to achieve is to load in a div per fan that is essentially just a box ...
5
votes
0answers
169 views

My PHP AJAX bridge to jQuery library

I've been working on this library for 2 years now and using on many websites with great success. And I decided to make it public, I can assure this is the best jQuery <=> PHP bridge library there ...
3
votes
1answer
187 views

JQuery Promise Interface for a (very) simple JSON Parser

I have written a parser function that returns a JQuery Promise. You can see from the code that this is the top level parser and it delegates out to two other more specific parsers. At the minute it ...
2
votes
2answers
248 views

Convert JSON to a different format (nested json)

This is really not a question. I was looking up this solution but couldn't find it anywhere. Thought of posting it here so it may save someone's time. Here was my issue: I had a JSON coming from ...
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 ...
1
vote
0answers
147 views

Best Practices for live update

Today I have been trying to make a twitter feed that live updates. The code is for all to use. My question is, does this use the best practices? And can anybody improve on it? ...
7
votes
2answers
20k views

Basic Simple Asp.net + jQuery + JSON example

Earlier this year, before I learnt about Code Review StackExchange, I gave this answer in response to a question about how to combine ASP.net, jQuery, and JSON: ...
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 ...