Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $.get('url_request.php?'+$(this).serialize(),function(jsondata){
- var arr = jsondata;
- Object.keys(arr).forEach(function(key, value) {
- console.log(key);
- Object.keys(arr[key]).forEach(function(val) {
- arr[key][val].forEach(function(data) {
- console.log(data);
- });
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment