Vip Group

REGISTER HERE
VIP Membership – One Time Payment Only ( Life Time Membership )
- Its a kind of Donation ( Kindly read Details here ) all of your money will be used only for the development of website and watch faces only.
- Benefits of Registration –Less advertisements, No Waiting for Downloading, User Dashboard, History of your all downloaded watch faces, Dynamic search on User dashboard, One Click download from User dashboard , Premium watch faces provided to you much before than Free users and much more to come.
- VIP Group access.. Here we will add new premium watch faces.
- We can convert 46mm watch faces to 42mm or vice versa , 46mm to GT3 , 46mm to Watch3 or vise versa…
- We can translate any watch face for you.
- YOU CAN CANCEL YOUR MEMBERSHIP ANYTIME.
Thank you for being VIP member and Remember we will invest 100% of your money in the development of this website and watch faces only. You can also contact Us for any query and Custom work.
Contact Us
Redirecting...
";
$('#formarea').append(rmsg);
setTimeout(function () {
location.href = response.redirect_to;
}, 4000);
}
} else if (response.action === 'error') {
$('#formarea').append(" " + response.message + "
");
} else {
if (response.action === 'payment') {
$('#formarea').html(response.paymentform);
} else {
showAlerts([response.message], 'danger');
}
}
},
error: function (res) {
console.log(res);
}
};
$form.on('submit', function (e) {
e.preventDefault();
if (validateForm()) {
$form.find('button[type=submit]').html(submit_button_busy_label);
$(this).ajaxSubmit(options);
}
return false;
});
$('.conditioned').each(function () {
var cur_field_id = $(this).attr('id');
cur_conditioned_fields = $(this).data('cond-fields');
cur_cond_fields = cur_conditioned_fields.split('|');
for (i = 0; i < cur_cond_fields.length; i++) {
var cond_field = cur_cond_fields[i].split(':');
addConditionClass(jQuery('#' + cond_field[0]), cur_field_id);
}
$('.cond_filler_' + cur_field_id).each(function () {
if ($(this).attr('type') == 'checkbox' || $(this).attr('type') == 'radio') {
$(this).on('change', function () {
applyRule(cur_field_id);
});
} else if ($(this).attr('type') == 'text' || $(this).attr('type') == 'email') {
$(this).on('keyup', function () {
applyRule(cur_field_id);
});
} else {
$(this).on('change', function () {
applyRule(cur_field_id);
});
}
});
});
function showAlerts(msgs, type) {
jQuery('.formnotice').slideUp();
alert_box = '';
for (i = 0; i < msgs.length; i++) {
alert_box += '' + msgs[i] + '
'; } alert_box += '
';
jQuery('#form-63e20ba7c623f').append(alert_box);
}
function addConditionClass(field_id, cond_class) {
jQuery(field_id).each(function () {
if (jQuery(this).is('input') || jQuery(this).is('select'))
jQuery(this).addClass('cond_filler_' + cond_class);
jQuery(this).children().each(function () {
addConditionClass(jQuery(this), cond_class);
})
});
return false;
}
function compareRule(cmp_operator, cmp_value, input_value) {
var comp_res = false;
switch (cmp_operator) {
case 'is':
comp_res = input_value === cmp_value;
break;
case 'is-not':
comp_res = input_value !== cmp_value;
break;
case 'less-than':
comp_res = input_value < cmp_value;
break;
case 'greater-than':
comp_res = input_value > cmp_value;
break;
case 'starts-with':
comp_res = input_value.indexOf(cmp_value) === 0;
break;
case 'contains':
comp_res = input_value.indexOf(cmp_value) !== -1;
break;
case 'ends-with':
comp_res = input_value.indexOf(cmp_value) === (input_value.length - cmp_value.length);
break;
default:
comp_res = false;
break;
}
return comp_res;
}
function applyRule(field_id) {
var this_conditions = jQuery('#' + field_id).data('cond-fields').split('|');
var this_action = jQuery('#' + field_id).data('cond-action').split(':');
var tmp_res = false;
var match_all = this_action[1] === 'all';
var matched = null;
$(this_conditions).each(function (index, condition) {
condition = condition.split(":");
var compare_field = condition[0];
var operator = condition[1];
var compare_with = condition[2];
if (compare_field !== '') {
var input_value = 'not-found';
var input_field = $('#' + compare_field).find('.cond_filler_' + field_id);
if (input_field[0].type === 'radio' || input_field[0].type === 'checlbox')
input_value = $('#' + compare_field + ' .cond_filler_' + field_id + ':checked').val();
else
input_value = input_field.val();
if (matched === null) matched = compareRule(operator, compare_with, input_value);
else {
if (match_all) matched = matched && compareRule(operator, compare_with, input_value);
else matched = matched || compareRule(operator, compare_with, input_value);
}
}
});
if (matched) {
jQuery('#' + field_id).removeClass('hide');
} else {
jQuery('#' + field_id).addClass('hide');
}
}
});
'; } alert_box += '