Latest videos
Shala Yisrael
21 Views 15 hours ago
Shala Yisrael
6 Views 1 day ago
Shala Yisrael
10 Views 1 day ago
Shala Yisrael
10 Views 1 day ago
Shala Yisrael
23 Views 2 days ago
Shala Yisrael
10 Views 2 days ago
Please complete all required fields
');
$('#stripe_btn').text("Purchase");
$('#stripe_btn').removeAttr('disabled');
}
}
function SH_StripeCardResponseHandler(status, response) {
if (response.error) {
$('#stripe_alert').html(''+response.error.message+'
');
$('#stripe_btn').text("Purchase");
$('#stripe_btn').removeAttr('disabled');
} else {
stripe_array['token'] = response.id;
$.post('https://blackjunction.tv/aj/go_pro/subscribe', {'stripe_name': stripe_array['stripe_name'],'stripe_email': stripe_array['stripe_email'],'stripe_number': stripe_array['stripe_number'],'stripe_month': stripe_array['stripe_month'],'stripe_year': stripe_array['stripe_year'],'stripe_cvc': stripe_array['stripe_cvc'],stripeToken:stripe_array['token'],user_id: '575',type:'stripe'}, function (data) {
if (data.status == 200) {
window.location.href = data.url;
} else {
$('#stripe_alert').html(' Payment declined, please try again later.
');
}
});
}
}
function PT_OpenStripe(pkg,self,video_id = 0,price = 0,user_id = 0){
$('#pay-go-pro').modal('hide');
$('#stripe_modal').modal('show');
}
$(document).on('click', '#select-img', function(event) {
$("#thumbnail").click()
});
$(document).on('change', '#thumbnail', function(event) {
let imgPath = $(this)[0].files[0].name;
if (typeof(FileReader) != "undefined") {
let reader = new FileReader();
reader.onload = function(e) {
$('#receipt_img_preview').attr('src', e.target.result);
}
reader.readAsDataURL(this.files[0]);
}
$('#bank_transfer_modal').addClass('up_rec_img_ready');
});
jQuery(document).ready(function($) {
$('#bank_transfer_form').ajaxForm({
url: 'https://blackjunction.tv/aj/go_pro/subscribe',
beforeSend: function() {
$('#bank_transfer_form').find('.ball-pulse').fadeIn(100);
},
success: function(data) {
if (data['status'] == 200) {
$("#blog-alert").html(''+ data['message'] +'
');
setTimeout(function () {
$(".prv-img").html('https://blackjunction.tv/browse_to_upload
' + data['message'] + '
');
}
$('#bank_transfer_form').find('.ball-pulse').fadeOut(100);
}});
});
function PT_OpenBank(pkg,self,video_id = 0,price = 0){
if (!pkg || !self) {
return false;
}
$(self).text("Please wait..").attr('disabled', 'true');
$('#pay-go-pro').modal('hide');
$('#configreset').click();
$("#blog-alert").html('');
$('#pay-go-pro').modal('hide');
$('#bank_transfer_modal').modal({
show: true
});
}