jQuery JavaScript Library suite for AJAX requests. A full set of functions that allows to load data from the server using asynchronous HTTP requests, without a browser page refresh.
1
vote
2answers
144 views
+50
jQuery AJAX - issue returning JSON value
I'm not getting response as JSON type data from server.
I'm using JSON plugin.
jQuery( "#dialog-form" ).dialog({
autoOpen: false,
height: 500,
width: 750,
modal: true,
buttons ...
1
vote
2answers
105 views
+50
jQuery accordion - quick show/hide
I have a page with an accordion that contains search criteria. Once a person clicks the search button, the criteria closes (I simulate a click on the accordion heading). This works great.
The ...