Добрый вечер используется плагин imgAreaSelect. Как показать выделеную область сразу после загрузки страницы, задать по умолчанию значение ?
$(document).ready(function () {
$("<div><div>") .css({
float: 'left',
position: 'relative',
overflow: 'hidden',
width: '1px',
height: '75px'
}) .insertAfter($('#photo'));
$('#photo').imgAreaSelect({
aspectRatio: '210:300',
handles: true,
onSelectChange: preview,
onSelectEnd: function ( image, selection ) {
$('input[name=x1]').val(selection.x1);
$('input[name=y1]').val(selection.y1);
$('input[name=x2]').val(selection.x2);
$('input[name=y2]').val(selection.y2);
$('input[name=w]').val(selection.width);
$('input[name=h]').val(selection.height);
}
});
});