jQuery

How to grab Query String and Send it to Ajax in jQuery

How to grab Query String and Send it to Ajax in jQuery

I had a peculiar requirement where I had to grab the entire query string (GET parameters) from the current page and send it to the ajax call happening on the same page. Here is how I did that $...

Aug 07, 2020 · Tushar
Create a BuzzFeed Like Quiz in jQuery Plugin

Create a BuzzFeed Like Quiz in jQuery Plugin

You are in the right place if you are looking for a plugin to build a buzzfeed like quiz in jQuery. You might have came across quiz over the internet which asks you some multiple choice questions a...

Mar 15, 2015 · Tushar
Parsing JSON from jQuery Ajax Request

Parsing JSON from jQuery Ajax Request

This post shows the examples of parsing a JSON from a jQuery ajax call. 1. SimpleJSON [ { customer_id:"1", customer_name: "Jim" }, { customer_id:"2", customer_name: "Joe" } ] Followi...

Jan 22, 2015 · Tushar