/home/hdwebsolution/www/sareen-1/assets/js/custom.js
$(document).ready(function() {
    var base_url = $('#base_url').val();
    // Set Table Bordered
    $("table").attr("class", "table table-bordered");
});

// Captcha refresh code 

$(document).ready(function() {
    var base_url = $('#base_url').val();
    $('.refreshCaptcha').on('click', function() {
        $.get(base_url + 'captcha/refresh',
            function(data) {
                $('#captImg').html(data);
            });
    });
});


function lc_product_quick_view(product_id, e) {
    e.preventDefault();

    var base_url = $('#base_url').val();

    // var product_id = $(this).data('id');

    $.ajax({

        type: "POST",

        url: base_url + 'ajax/quickviewmodal',

        data: { 'product_id': product_id },

        dataType: 'html',

        success: function(data) {

            $('.modal-content').html(data);
            $('#productsQuickView').modal('show');
        },
    });
}