I get these type of array in my jQuery variable. Now I want store each array values in differnt varaible.
(Ex : I want to store Address field in one variable).
How to do it? Any suggestion? Here I upload the image, I get that type of array in console.
$.ajax({
type : 'POST',
url : '<?php echo MY_SITE_URL ;?>'+'webapi.php',
data: { task:'Properties.getSearch',SEARCHID1: SEARCHID1},
success: function(response)
{
var j= JSON.parse(response);
console.log(j);
},
});
