How to use Croppie in steps js or tab js? It dosn't work in steps js
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">×</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
add a comment |
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">×</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
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
add a comment |
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">×</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
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">×</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">×</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">×</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
jquery jquery-steps croppie
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
add a comment |
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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