JQuery and Json together
JQuery is a javascript library which eases javascript developemt and it also includes many Ajax functionality.
So before we start we need to download the
.js libraries from jquery official sites
Basic understanding
$("#header") = get the element with id="header"
$("h3") = get all "h3" element
$("div#content .photo") = get all element with class="photo" nested in the 'div id="content"'
$("ul li") = get all "li" element nested in all "ul"
$("ul li:first") = get only the first "li" element of the "ul"
See Using Jquery in repeater / gridview / datagrid
How to edit gridview row using jquery DOM
All Jquery example are experienced from
jquery.com, here we are just trying to make example easier for development need.
Jquery examples