$.ajax({
type: "get",
url: "./actions.php",
data: {
sts: $(this).attr("data-sts")
},
success: function (data) {
activeArr = data
console.log(activeArr, typeof(data));
}
});