[Solved] When reset-btn is clicked, calculate-btn stops and then does not work


You can use .stop() to stop the animation.

$("#reset").click(function(){
    $(".calculate-btn").stop()
    .css('opacity' , 1);
});

Demo :http://jsfiddle.net/3jLAZ/28/

I hope this is what you are looking for.

12

solved When reset-btn is clicked, calculate-btn stops and then does not work