This is ok in Firefox, but somehow it works weird in Chrome.
$.Jcrop($('#cropbox'),options);
Doing below changes. All work fine in IE, Firefox, Safari, and Chrome!
$('#cropbox').Jcrop(options);
var jcrop = $('#cropbox').data('Jcrop');
jcrop.setOptions(newOptions);
Good to go forward!