I have a terms & condition checkbox. If it's checked, it submits the form otherwise it throws up an alert. When the alert dialogue box is thrown, the spinning wheel spins for eternity.
I am using the ladda zoom-in gif as listed here: /
Before clicking on the button, here's the generated html code:
<button type="submit" id="ladda-purple-step4" class="ladda-button ladda captilize step-4-btn" data-color="purple" data-style="zoom-in">Book appointment now</button>
When spinning begins:
<button type="submit" id="ladda-purple-step4" class="ladda-button ladda captilize step-4-btn" data-color="purple" data-style="zoom-in" disabled data-loading>Book appointment now</button>
For the alert I have:
$('#ladda-purple-step4').unbind('click').click(function (e) {
if (!document.getElementById('termsagree').checked) {
e.preventDefault();
alert("You must accept the Terms & Conditions.");
}
});
I have managed to stop this on parts of the website using this code:
$('#ladda-purple-step4').on('click', function (e) {
$('#ladda-purple-step4').attr("disabled", false);
$('#ladda-purple-step4').removeAttr("data-loading");
});
But it's not working here as this initiates before the spinning begins. My question is, I'm looking for a way to stop the spinning. I was thinking if I can find the attribute data-loading, then fire off my code? What do you remend? How would I do that?
Thanks
I have a terms & condition checkbox. If it's checked, it submits the form otherwise it throws up an alert. When the alert dialogue box is thrown, the spinning wheel spins for eternity.
I am using the ladda zoom-in gif as listed here: http://lab.hakim.se/ladda/
Before clicking on the button, here's the generated html code:
<button type="submit" id="ladda-purple-step4" class="ladda-button ladda captilize step-4-btn" data-color="purple" data-style="zoom-in">Book appointment now</button>
When spinning begins:
<button type="submit" id="ladda-purple-step4" class="ladda-button ladda captilize step-4-btn" data-color="purple" data-style="zoom-in" disabled data-loading>Book appointment now</button>
For the alert I have:
$('#ladda-purple-step4').unbind('click').click(function (e) {
if (!document.getElementById('termsagree').checked) {
e.preventDefault();
alert("You must accept the Terms & Conditions.");
}
});
I have managed to stop this on parts of the website using this code:
$('#ladda-purple-step4').on('click', function (e) {
$('#ladda-purple-step4').attr("disabled", false);
$('#ladda-purple-step4').removeAttr("data-loading");
});
But it's not working here as this initiates before the spinning begins. My question is, I'm looking for a way to stop the spinning. I was thinking if I can find the attribute data-loading, then fire off my code? What do you remend? How would I do that?
Thanks
Share Improve this question edited Jul 7, 2014 at 8:34 Rory McCrossan 338k41 gold badges320 silver badges351 bronze badges asked Jul 7, 2014 at 8:33 DarkShadowAYDarkShadowAY 1754 silver badges15 bronze badges 1- Create a fiddle of your code ! – Rahul Gupta Commented Jul 7, 2014 at 10:37
1 Answer
Reset to default 11Try using Ladda.stopAll(); See here: https://github./hakimel/Ladda