function preview(img, selection) {
var scaleX = 100 / (selection.width || 1);
var scaleY = 100 / (selection.height || 1);
var heo = $('#photo + div > img').width();
var wio = $('#photo + div > img').height();
$('#photo + div > img').css({
width: wio,
height: heo,
marginLeft: '-' + Math.round(scaleX * selection.x1) + 'px',
marginTop: '-' + Math.round(scaleY * selection.y1) + 'px'
});
}
function preview(img, selection) {
var scaleX = 100 / (selection.width || 1);
var scaleY = 100 / (selection.height || 1);
$('#photo + div > img').css({
$('#photo + div > img').width(),
$('#photo + div > img').height(),
marginLeft: '-' + Math.round(scaleX * selection.x1) + 'px',
marginTop: '-' + Math.round(scaleY * selection.y1) + 'px'
});
}
перестает работать вообще
var wio = $('#photo').height();
почему-то равняется нулю, чтобы сделать?