Quincy
Member since Jul 14, 2011
- Profile: /members/8621-quincy.htm
- Comments: 2
Recent Blog Comments By Quincy
-
Using jQuery.ajaxSetup() To Accumulate Global Data Parameters For AJAX Requests
Posted on Jul 25, 2011 at 3:46 AM
@Ben, Data parameter can either be object or string(query string) http://api.jquery.com/jQuery.ajax/ If you provide a query string as "data" in $.ajax(), the "data" specified using $.ajaxSetup would not be merged but got overwritten instead. So if we want to use this "... read more »
-
Using jQuery.ajaxSetup() To Accumulate Global Data Parameters For AJAX Requests
Posted on Jul 14, 2011 at 4:31 AM
It doesn't work if you put query string (like x=hello) in data param within $.ajax(). The 'global' data will get overwritten.... read more »