how do i un-jcrop an image?
I\'m adding jcrop with a;
$(\'#imgThumbnailer\').Jcrop({
onChange: statusCrop,
onSelect: statusCrop,
bgColor:
I was wondering the same thing and after reading the source have found a simple solution that works in v0.9.8 (the other posted answers only work with the dev version currently). If you initiate Jcrop like this:
$('#imgThumbnailer').Jcrop({
onChange: statusCrop,
onSelect: statusCrop,
bgColor: 'black',
bgOpacity: .3
});
then you can get access to the api and destroy Jcrop via:
JcropAPI = $('#imgThumbnailer').data('Jcrop');
JcropAPI.destroy();
It's probably too late for the asker but hopefully this is helpful to someone who stumbles upon this page from google!