JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "bind.js"

Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/jquery-wizard-master/src/bind.js
File size: 451 bytes
MIME-type: text/plain
Charset: utf-8

$(document).on('click', '[data-wizard]', function(e){
    var href;
    var $this = $(this);
    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, ''));

    var wizard = $target.data('wizard');

    if(!wizard){
        return;
    }

    var method = $this.data('wizard');

    if(/^(back|next|first|finish|reset)$/.test(method)){
        wizard[method]();
    }

    e.preventDefault();
});