¿cómo puedo quitar una imagen?¿Cómo elimino jcrop?
Estoy agregando jcrop con a;
$('#imgThumbnailer').Jcrop({
onChange: statusCrop,
onSelect: statusCrop,
bgColor: 'black',
bgOpacity: .3
});
¿Cómo hago para deshacerlo?
Editar:
$('#imgThumbnailer').attr("src", $obj.attr('thumbnailer_link'));
var dlg = $("#ThumbnailDialog").dialog({
modal: false,
draggable: false,
position: 'center',
zIndex: 99999, // Above the overlay
closeText: '',
width: 510,
height: 500,
open: function() {
$('body').css("overflow", "hidden");
if ($.browser.msie) {
$('html').css("overflow", "hidden");
}
$("#loader").show();
var ratio = parseFloat($obj.attr('thumbnailer_ratio'));
jcrop_api = $.Jcrop('#imgThumbnailer', {
onChange: statusCrop,
onSelect: statusCrop,
bgColor: 'black',
bgOpacity: .3,
aspectRatio: ratio
});
},
close: function() { $('body').css("overflow", "auto"); if ($.browser.msie) { $('html').css("overflow", "auto"); } $("#loader").hide(); },
buttons: {
'Set Thumbnail': function() {
$(this).dialog('close');
},
Cancel: function() {
jcrop_api.destroy();
jcrop_api = null;
$(this).dialog('close');
}
}
}).parent();
dlg.appendTo(jQuery('form:first'));
El código anterior no funciona para mí. Creo que esto tiene que ver con el hecho de que estoy usando esto dentro de un diálogo de jquery. http://code.google.com/p/jcrop/issues/detail?id=21
No estoy seguro de cómo solucionarlo.
Cuando puedo inicializar jcrop de esa manera, no inicializa : -/ – Justin808
¿Aparece un error? –
es demasiado corto: he puesto el código anterior. Creo que es un error en jcrop. @Jeff the Bear: Ningún error. todos los divs de JCrop se configuran a 0px alto y ancho con display: ninguno. – Justin808