SyntaxFix
Write A Post
Hire A Developer
Questions
This is what I came up with to easily view all data values:
var dataItems = "";_x000D_ $.each(data, function (index, itemData) {_x000D_ dataItems += index + ": " + itemData + "\n";_x000D_ });_x000D_ console.log(dataItems);