﻿$(function() {
    function showCoords(c) {
        $('#x1').val(c.x);
        $('#y1').val(c.y);
        $('#x2').val(c.x2);
        $('#y2').val(c.y2);
    };

    $('#jcrop_target').Jcrop({
        onChange: showCoords,
        onSelect: showCoords,
        aspectRatio: $('#width').val() / $('#height').val()
    });
});


