
'
+ contentProtectorAjax.loading_label
+ '
');
return true;
}
// success callback
function contentProtectorSuccess(data, status, xhr, $form) {
jQuery(this).trigger("bindJsToContentProtectorDiv");
}
// error callback
function contentProtectorError(xhr, textStatus, errorThrown) {
alert(contentProtectorAjax.error_heading
+ '\n\n'
+ contentProtectorAjax.error_desc
+ '\n\ntextStatus: '
+ textStatus
+ '\n\errorThrown: '
+ errorThrown
+ '\n\nxhr.responseText: \n'
+ xhr.responseText );
}
jQuery(document).ready(function() {
// Support for Contact Form 7
jQuery('div.content-protector-access-form').on('bindJsToContentProtectorDiv', function(e) {
var the_form = jQuery(e.target).find('div.wpcf7 form.wpcf7-form');
if (jQuery(the_form).length === 0)
return;
jQuery(the_form).each( function() {
var the_action = jQuery(this).attr('action');
var the_action_parts = the_action.split('#');
jQuery(this).wpcf7InitForm();
jQuery(this).attr('action', location.href + '#' + the_action_parts[1]);
});
});
});