Guest User

Untitled

a guest
May 1st, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.39 KB | None | 0 0
  1.     $.get('url_request.php?'+$(this).serialize(),function(jsondata){
  2.                         var arr = jsondata;
  3.  
  4.                         Object.keys(arr).forEach(function(key, value) {
  5.                               console.log(key);
  6.                               Object.keys(arr[key]).forEach(function(val) {
  7.                                     arr[key][val].forEach(function(data) {
  8.                                       console.log(data);
  9.                                     });
  10.                               });
  11.                         });
  12.                     });
Advertisement
Add Comment
Please, Sign In to add comment