I have the following json results being returned to me and I can't work out how to loop over the success results. Here is an example of what is being returned
{"ERRORS":[],"SUCCESS":["7336","7337","7356"]}
This is where I have got to so far but it's not working
jQuery.each( data.success, function( i, val ) {
console.log(val);
});
Any help would be appreciated