I need to make button to start blinking after some other elemment trigered it, for example checking the checkbox - see the code below:
<label>I agree with the terms</label>
<input class="some_check" type="checkbox" id="Signed">
<button class="buttonstyle" name="buttonNext" onClick="nextChoose('NEXT')" disabled>Proceed!</button>
Blinking must be infinite until:
- user clicks the button or
- unchecks the checkbox.
I know there's .effect()
method in jQuery UI, but it's time-limited
and if I loop it through the callback, how than I can break it to return button in a previous state?