jQuery-Smart-Wizard icon indicating copy to clipboard operation
jQuery-Smart-Wizard copied to clipboard

when clicking tab very fast two tab's got selected

Open velanchandru opened this issue 12 years ago • 1 comments

When try to click the tabs very fast two tabs got Selected i tried this way but no luck any one experienced this... and also tried .on /.off events no luck

$($this.steps).bind("click", function (e) {

$($this.steps).unbind("click");

        if ($this.steps.index(this) == $this.curStepIdx) {

            return false;
        }

        var nextStepIdx = $this.steps.index(this);
        var isDone = $this.steps.eq(nextStepIdx).attr("isDone") - 0;
        if (isDone == 1) {
            _loadContent($this, nextStepIdx);


        }


        $($this.steps).bind("click");
        return false;
    });

velanchandru avatar Aug 01 '13 14:08 velanchandru

See https://github.com/mstratman/jQuery-Smart-Wizard/issues/53

garychapman avatar Apr 13 '15 06:04 garychapman