var jcrop_api = [];
$(function(){
$('.image-resize').each(function(index, element) {
var w = $(this).data('w');
var h = $(this).data('h');
var x1 = $(this).data('x1');
var x2 = $(this).data('x2');
var y1 = $(this).data('y1');
var y2 = $(this).data('y2');
var id = $(this).data('id');
var img = $(this).find('img');
$(img).Jcrop({
keySupport: false,
}, function (){
var bounds = this.getBounds();
boundx = bounds[0];
bound = bounds[1];
jcrop_api[index] = this;
});
});
});
my_func(){
// Можно пробежать все фотки и запросить их координаты
console.log(jcrop_api[0].tellSelect()); // первая фотка
}