| jquery Programming Glossary: data.replacejQuery.parseJSON vs JSON.parse http://stackoverflow.com/questions/10362277/jquery-parsejson-vs-json-parse  if data  Make sure the incoming data is actual JSON  Logic borrowed from http json.org json2.js if rvalidchars.test data.replace rvalidescape @  .replace rvalidtokens  .replace rvalidbraces  return new Function return data   jQuery.error Invalid JSON.. 
 Passing complex objects into a WCF Rest Service http://stackoverflow.com/questions/2062053/passing-complex-objects-into-a-wcf-rest-service  in WebInvoke data objectAsJson dataFilter function data type convert from Date nnnn to new Date nnnn return data.replace Date 0 9 gi 'new 1' processData false  do not convert outbound data to string already done success function msg ... error.. 
 jquery loop on Json data using $.each http://stackoverflow.com/questions/2342371/jquery-loop-on-json-data-using-each 
 Consuming JSON data without jQuery (sans getJSON) http://stackoverflow.com/questions/3238457/consuming-json-data-without-jquery-sans-getjson  jQuery.trim data Make sure the incoming data is actual JSON Logic borrowed from http json.org json2.js if ^ s .test data.replace bfnrt u 0 9a fA F 4 g @ .replace ^ n r true false null d . d eE d g .replace ^ s g  Try to use the native JSON parser first.. 
 Highlight search terms (select only leaf nodes) http://stackoverflow.com/questions/3241169/highlight-search-terms-select-only-leaf-nodes  span class 'highlight' term span base .contents .each function i el if el.nodeType 3 var data el.data if data data.replace re replacement var wrapper span .html data el .before wrapper.contents .remove  function dehighlight term base var text.. 
 Trying to select a 'body' tag from html that is returned by get() request http://stackoverflow.com/questions/7839889/trying-to-select-a-body-tag-from-html-that-is-returned-by-get-request  the body from the data string in another way such as Regular expressions. Example .get filename function data var body data.replace ^ S s body ^ i  .replace body S s i Optionally convert the string to a jQuery object body body console.log body Note My.. 
 |