Skip to content

Instantly share code, notes, and snippets.

@dnasca
Created December 9, 2015 19:35
Show Gist options
  • Save dnasca/5b14b1105dc2533c424f to your computer and use it in GitHub Desktop.
Save dnasca/5b14b1105dc2533c424f to your computer and use it in GitHub Desktop.
jq array iterating, removing white space, and tolowercase
$.each(parsedCsv, function (key, val) {
key = key.toLowerCase().replace(/\s+/g, '');
$('#pool').append('<li id="' + key + '"class="list-group-item">' + val + '</li>');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment