SyntaxFix
Write A Post
Hire A Developer
Questions
The in operator only works on objects. You are using it on a string. Make sure your value is an object before you using $.each. In this specific case, you have to parse the JSON:
in
$.each
$.each(JSON.parse(myData), ...);