How to use Croppie in steps js or tab js? It dosn't work in steps js












0















I need to use Croppie Js for upload and crop image in Steps Js.
But it doesn't work. when I disabled Steps it works correctly.
I dont know what is the problem.
I test it in Bootstrap Modal too, but it doesn't work neither.
Could you please check the code below and help me?
this is my code and I hope someone can save me






 <script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.js'></script>
<script src='https://foliotek.github.io/Croppie/croppie.js'></script>
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
});
var $uploadCrop,
tempFilename,
rawImg,
imageId;
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.upload-demo').addClass('ready');
$('#cropImagePop').modal('show');
rawImg = e.target.result;
};
reader.readAsDataURL(input.files[0]);
} else
{
swal("Sorry - you're browser doesn't support the FileReader API");
}
}

$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 250,
height: 250 },

enforceBoundary: false,
enableExif: true });

$('#cropImagePop').on('shown.bs.modal', function () {
// alert('Shown pop');
$uploadCrop.croppie('bind', {
url: rawImg }).
then(function () {
console.log('jQuery bind complete');
});
});

$('.item-img').on('change', function () {imageId = $(this).data('id');tempFilename = $(this).val();
$('#cancelCropBtn').data('id', imageId);readFile(this);});
$('#cropImageBtn').on('click', function (ev) {
$uploadCrop.croppie('result', {
type: 'base64',
format: 'jpeg',
size: { width: 1000, height: 1000 } }).
then(function (resp) {
$('#item-img-output').attr('src', resp);
$('#cropImagePop').modal('hide');
});
});
//# sourceURL=pen.js
</script>

 <link rel='stylesheet' href='https://foliotek.github.io/Croppie/croppie.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css'>

  <div id="wizard">
<h2>upload Image</h2>
<section>
<h3>Upload and crop your image</h3>



<div class="row">
<input type="file" name="" class="item-img" accept="image/*" />
</div>
<div class="row">
<h3>Result Image</h3>
<div class="image-output">
<img src="" alt="" id="item-img-output" />
</div>
</div>


<div id="cropImagePop" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Crop Image</h4>
</div>
<div class="modal-body">
<div class="col-xs-12 col-sm-4 col-sm-offset-4">
<div style="display: block; width: 300px; height: 300px;">
<div id="upload-demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" id="cropImageBtn" class="btn btn-primary">Crop</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>




</section>
<h2>The other part</h2>
<section>
<p>Blah Blah Blah </p>
</section>
</div>












share|improve this question




















  • 1





    did you tried some thing? post your code where you stuck so that someone who knows can help you precisely.go through code of conduct

    – Bhandari
    Nov 17 '18 at 14:53











  • The code added thank you for your answer

    – Camelia
    Nov 18 '18 at 6:18
















0















I need to use Croppie Js for upload and crop image in Steps Js.
But it doesn't work. when I disabled Steps it works correctly.
I dont know what is the problem.
I test it in Bootstrap Modal too, but it doesn't work neither.
Could you please check the code below and help me?
this is my code and I hope someone can save me






 <script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.js'></script>
<script src='https://foliotek.github.io/Croppie/croppie.js'></script>
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
});
var $uploadCrop,
tempFilename,
rawImg,
imageId;
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.upload-demo').addClass('ready');
$('#cropImagePop').modal('show');
rawImg = e.target.result;
};
reader.readAsDataURL(input.files[0]);
} else
{
swal("Sorry - you're browser doesn't support the FileReader API");
}
}

$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 250,
height: 250 },

enforceBoundary: false,
enableExif: true });

$('#cropImagePop').on('shown.bs.modal', function () {
// alert('Shown pop');
$uploadCrop.croppie('bind', {
url: rawImg }).
then(function () {
console.log('jQuery bind complete');
});
});

$('.item-img').on('change', function () {imageId = $(this).data('id');tempFilename = $(this).val();
$('#cancelCropBtn').data('id', imageId);readFile(this);});
$('#cropImageBtn').on('click', function (ev) {
$uploadCrop.croppie('result', {
type: 'base64',
format: 'jpeg',
size: { width: 1000, height: 1000 } }).
then(function (resp) {
$('#item-img-output').attr('src', resp);
$('#cropImagePop').modal('hide');
});
});
//# sourceURL=pen.js
</script>

 <link rel='stylesheet' href='https://foliotek.github.io/Croppie/croppie.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css'>

  <div id="wizard">
<h2>upload Image</h2>
<section>
<h3>Upload and crop your image</h3>



<div class="row">
<input type="file" name="" class="item-img" accept="image/*" />
</div>
<div class="row">
<h3>Result Image</h3>
<div class="image-output">
<img src="" alt="" id="item-img-output" />
</div>
</div>


<div id="cropImagePop" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Crop Image</h4>
</div>
<div class="modal-body">
<div class="col-xs-12 col-sm-4 col-sm-offset-4">
<div style="display: block; width: 300px; height: 300px;">
<div id="upload-demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" id="cropImageBtn" class="btn btn-primary">Crop</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>




</section>
<h2>The other part</h2>
<section>
<p>Blah Blah Blah </p>
</section>
</div>












share|improve this question




















  • 1





    did you tried some thing? post your code where you stuck so that someone who knows can help you precisely.go through code of conduct

    – Bhandari
    Nov 17 '18 at 14:53











  • The code added thank you for your answer

    – Camelia
    Nov 18 '18 at 6:18














0












0








0








I need to use Croppie Js for upload and crop image in Steps Js.
But it doesn't work. when I disabled Steps it works correctly.
I dont know what is the problem.
I test it in Bootstrap Modal too, but it doesn't work neither.
Could you please check the code below and help me?
this is my code and I hope someone can save me






 <script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.js'></script>
<script src='https://foliotek.github.io/Croppie/croppie.js'></script>
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
});
var $uploadCrop,
tempFilename,
rawImg,
imageId;
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.upload-demo').addClass('ready');
$('#cropImagePop').modal('show');
rawImg = e.target.result;
};
reader.readAsDataURL(input.files[0]);
} else
{
swal("Sorry - you're browser doesn't support the FileReader API");
}
}

$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 250,
height: 250 },

enforceBoundary: false,
enableExif: true });

$('#cropImagePop').on('shown.bs.modal', function () {
// alert('Shown pop');
$uploadCrop.croppie('bind', {
url: rawImg }).
then(function () {
console.log('jQuery bind complete');
});
});

$('.item-img').on('change', function () {imageId = $(this).data('id');tempFilename = $(this).val();
$('#cancelCropBtn').data('id', imageId);readFile(this);});
$('#cropImageBtn').on('click', function (ev) {
$uploadCrop.croppie('result', {
type: 'base64',
format: 'jpeg',
size: { width: 1000, height: 1000 } }).
then(function (resp) {
$('#item-img-output').attr('src', resp);
$('#cropImagePop').modal('hide');
});
});
//# sourceURL=pen.js
</script>

 <link rel='stylesheet' href='https://foliotek.github.io/Croppie/croppie.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css'>

  <div id="wizard">
<h2>upload Image</h2>
<section>
<h3>Upload and crop your image</h3>



<div class="row">
<input type="file" name="" class="item-img" accept="image/*" />
</div>
<div class="row">
<h3>Result Image</h3>
<div class="image-output">
<img src="" alt="" id="item-img-output" />
</div>
</div>


<div id="cropImagePop" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Crop Image</h4>
</div>
<div class="modal-body">
<div class="col-xs-12 col-sm-4 col-sm-offset-4">
<div style="display: block; width: 300px; height: 300px;">
<div id="upload-demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" id="cropImageBtn" class="btn btn-primary">Crop</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>




</section>
<h2>The other part</h2>
<section>
<p>Blah Blah Blah </p>
</section>
</div>












share|improve this question
















I need to use Croppie Js for upload and crop image in Steps Js.
But it doesn't work. when I disabled Steps it works correctly.
I dont know what is the problem.
I test it in Bootstrap Modal too, but it doesn't work neither.
Could you please check the code below and help me?
this is my code and I hope someone can save me






 <script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.js'></script>
<script src='https://foliotek.github.io/Croppie/croppie.js'></script>
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
});
var $uploadCrop,
tempFilename,
rawImg,
imageId;
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.upload-demo').addClass('ready');
$('#cropImagePop').modal('show');
rawImg = e.target.result;
};
reader.readAsDataURL(input.files[0]);
} else
{
swal("Sorry - you're browser doesn't support the FileReader API");
}
}

$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 250,
height: 250 },

enforceBoundary: false,
enableExif: true });

$('#cropImagePop').on('shown.bs.modal', function () {
// alert('Shown pop');
$uploadCrop.croppie('bind', {
url: rawImg }).
then(function () {
console.log('jQuery bind complete');
});
});

$('.item-img').on('change', function () {imageId = $(this).data('id');tempFilename = $(this).val();
$('#cancelCropBtn').data('id', imageId);readFile(this);});
$('#cropImageBtn').on('click', function (ev) {
$uploadCrop.croppie('result', {
type: 'base64',
format: 'jpeg',
size: { width: 1000, height: 1000 } }).
then(function (resp) {
$('#item-img-output').attr('src', resp);
$('#cropImagePop').modal('hide');
});
});
//# sourceURL=pen.js
</script>

 <link rel='stylesheet' href='https://foliotek.github.io/Croppie/croppie.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css'>

  <div id="wizard">
<h2>upload Image</h2>
<section>
<h3>Upload and crop your image</h3>



<div class="row">
<input type="file" name="" class="item-img" accept="image/*" />
</div>
<div class="row">
<h3>Result Image</h3>
<div class="image-output">
<img src="" alt="" id="item-img-output" />
</div>
</div>


<div id="cropImagePop" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Crop Image</h4>
</div>
<div class="modal-body">
<div class="col-xs-12 col-sm-4 col-sm-offset-4">
<div style="display: block; width: 300px; height: 300px;">
<div id="upload-demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" id="cropImageBtn" class="btn btn-primary">Crop</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>




</section>
<h2>The other part</h2>
<section>
<p>Blah Blah Blah </p>
</section>
</div>








 <script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.js'></script>
<script src='https://foliotek.github.io/Croppie/croppie.js'></script>
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
});
var $uploadCrop,
tempFilename,
rawImg,
imageId;
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.upload-demo').addClass('ready');
$('#cropImagePop').modal('show');
rawImg = e.target.result;
};
reader.readAsDataURL(input.files[0]);
} else
{
swal("Sorry - you're browser doesn't support the FileReader API");
}
}

$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 250,
height: 250 },

enforceBoundary: false,
enableExif: true });

$('#cropImagePop').on('shown.bs.modal', function () {
// alert('Shown pop');
$uploadCrop.croppie('bind', {
url: rawImg }).
then(function () {
console.log('jQuery bind complete');
});
});

$('.item-img').on('change', function () {imageId = $(this).data('id');tempFilename = $(this).val();
$('#cancelCropBtn').data('id', imageId);readFile(this);});
$('#cropImageBtn').on('click', function (ev) {
$uploadCrop.croppie('result', {
type: 'base64',
format: 'jpeg',
size: { width: 1000, height: 1000 } }).
then(function (resp) {
$('#item-img-output').attr('src', resp);
$('#cropImagePop').modal('hide');
});
});
//# sourceURL=pen.js
</script>

 <link rel='stylesheet' href='https://foliotek.github.io/Croppie/croppie.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css'>

  <div id="wizard">
<h2>upload Image</h2>
<section>
<h3>Upload and crop your image</h3>



<div class="row">
<input type="file" name="" class="item-img" accept="image/*" />
</div>
<div class="row">
<h3>Result Image</h3>
<div class="image-output">
<img src="" alt="" id="item-img-output" />
</div>
</div>


<div id="cropImagePop" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Crop Image</h4>
</div>
<div class="modal-body">
<div class="col-xs-12 col-sm-4 col-sm-offset-4">
<div style="display: block; width: 300px; height: 300px;">
<div id="upload-demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" id="cropImageBtn" class="btn btn-primary">Crop</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>




</section>
<h2>The other part</h2>
<section>
<p>Blah Blah Blah </p>
</section>
</div>





 <script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.js'></script>
<script src='https://foliotek.github.io/Croppie/croppie.js'></script>
<script>
$(function ()
{
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
});
var $uploadCrop,
tempFilename,
rawImg,
imageId;
function readFile(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('.upload-demo').addClass('ready');
$('#cropImagePop').modal('show');
rawImg = e.target.result;
};
reader.readAsDataURL(input.files[0]);
} else
{
swal("Sorry - you're browser doesn't support the FileReader API");
}
}

$uploadCrop = $('#upload-demo').croppie({
viewport: {
width: 250,
height: 250 },

enforceBoundary: false,
enableExif: true });

$('#cropImagePop').on('shown.bs.modal', function () {
// alert('Shown pop');
$uploadCrop.croppie('bind', {
url: rawImg }).
then(function () {
console.log('jQuery bind complete');
});
});

$('.item-img').on('change', function () {imageId = $(this).data('id');tempFilename = $(this).val();
$('#cancelCropBtn').data('id', imageId);readFile(this);});
$('#cropImageBtn').on('click', function (ev) {
$uploadCrop.croppie('result', {
type: 'base64',
format: 'jpeg',
size: { width: 1000, height: 1000 } }).
then(function (resp) {
$('#item-img-output').attr('src', resp);
$('#cropImagePop').modal('hide');
});
});
//# sourceURL=pen.js
</script>

 <link rel='stylesheet' href='https://foliotek.github.io/Croppie/croppie.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css'>

  <div id="wizard">
<h2>upload Image</h2>
<section>
<h3>Upload and crop your image</h3>



<div class="row">
<input type="file" name="" class="item-img" accept="image/*" />
</div>
<div class="row">
<h3>Result Image</h3>
<div class="image-output">
<img src="" alt="" id="item-img-output" />
</div>
</div>


<div id="cropImagePop" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">Crop Image</h4>
</div>
<div class="modal-body">
<div class="col-xs-12 col-sm-4 col-sm-offset-4">
<div style="display: block; width: 300px; height: 300px;">
<div id="upload-demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" id="cropImageBtn" class="btn btn-primary">Crop</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>




</section>
<h2>The other part</h2>
<section>
<p>Blah Blah Blah </p>
</section>
</div>






jquery jquery-steps croppie






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 18 '18 at 6:17







Camelia

















asked Nov 17 '18 at 14:44









CameliaCamelia

11




11








  • 1





    did you tried some thing? post your code where you stuck so that someone who knows can help you precisely.go through code of conduct

    – Bhandari
    Nov 17 '18 at 14:53











  • The code added thank you for your answer

    – Camelia
    Nov 18 '18 at 6:18














  • 1





    did you tried some thing? post your code where you stuck so that someone who knows can help you precisely.go through code of conduct

    – Bhandari
    Nov 17 '18 at 14:53











  • The code added thank you for your answer

    – Camelia
    Nov 18 '18 at 6:18








1




1





did you tried some thing? post your code where you stuck so that someone who knows can help you precisely.go through code of conduct

– Bhandari
Nov 17 '18 at 14:53





did you tried some thing? post your code where you stuck so that someone who knows can help you precisely.go through code of conduct

– Bhandari
Nov 17 '18 at 14:53













The code added thank you for your answer

– Camelia
Nov 18 '18 at 6:18





The code added thank you for your answer

– Camelia
Nov 18 '18 at 6:18












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53352273%2fhow-to-use-croppie-in-steps-js-or-tab-js-it-dosnt-work-in-steps-js%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53352273%2fhow-to-use-croppie-in-steps-js-or-tab-js-it-dosnt-work-in-steps-js%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?