Skip to content

Instantly share code, notes, and snippets.

@nickfogle
nickfogle / CRM designation parser
Last active November 9, 2015 14:28 — forked from hyperking/CRM designation parser
BBCRM Response Formatter
var allFunds = CRMresponse.Rows;
function beautifyCRM(allFunds) {
colleges = {}
$(allFunds).each(function(key, val) {
var list = val['Values'];
console.log(list);
var cname = list[2].split("\\").pop();
var fund = list[0];
var guid = list[3];