Tour UPDATE
We have resumed scheduling a limited number of guided tours at LTL! Please read the information below before submitting your request.
A limited number of guided tours of the chapel and library can be scheduled in advance to begin between 10:00 am and 3:30 pm, Monday through Friday.
Library staff members or volunteers lead the tours, providing details about the architecture, aesthetics, artifacts and resources of the library and chapel.  We require at least 4 people to schedule a guided tour. Guided tours usually last from 30 minutes to 1 hour. There is no charge for the tour, but we do accept donations. To begin the process of scheduling a tour of the chapel and library, please fill out the form below. You will be contacted by library staff only via email once your request has been approved. You MUST get prior approval and confirmation from us via email before bringing a group for a tour.
For instructions on gate entrance/parking at the library, click here.
** Note: If you are coming in a large bus, we have special instructions for entering and parking at the library.
Request a Tour
//document jQuery( document ).ready(function() { // donot submit form on enter , allow enter button only for tex jQuery(document).on("keypress", ":input:not(textarea)", function(event) { return event.keyCode != 13; }); //animation effect // do not use previous password saved in broswer for passowrd field jQuery("input[type='password']").attr("autocomplete", "new-password");
//handle form submission //jQuery("form[name='wpdevart_frontend_form_3']").submit(function(e){ jQuery(document).on("submit", "form[name='wpdevart_frontend_form_3']", function(e) { //shortcode attributes e.g var atts = {"id":"3"}; var options = { //target:'#frontend_form_messages_3', // target element(s) to be updated with server response // other available options: url:"https://www.laniertheologicallibrary.org/wp-admin/admin-ajax.php", // override for form's 'action' attribute //url:"https://www.laniertheologicallibrary.org/wp-content/plugins/contact-forms-builder-pro/check-ajax.php", data:{'btn_send_form_email':'1','process_ajax':'1','atts':JSON.stringify(atts),'action':'get_post_information'}, //type: type // 'get' or 'post', override for form's 'method' attribute //dataType: null // 'xml', 'script', or 'json' (expected server response type) //clearForm: true , // clear all form fields after successful submit //resetForm: true , // reset the form after successful submit
// $.ajax options can be used here too, for example: //timeout: 3000
beforeSubmit: function() { jQuery("#loader-icon-3").show(); }, success:showResponse, // post-submit callback };
// inside event callbacks 'this' is the DOM element so we first // wrap it in a jQuery object and then invoke ajaxSubmit jQuery(this).ajaxSubmit(options);
// !!! Important !!! // always return false to prevent standard browser submit and page navigation return false; });
function showResponse(responseText, statusText, xhr, $form) { str = responseText; //replace first occurence str = str.replace("successmsg_", " "); // append response console.log($form) jQuery("#frontend_form_messages_3").text(" "); jQuery("#frontend_form_messages_3").append(str); jQuery(".notice-dismiss").click(function(){ self=this; jQuery(this).parent().parent().slideUp("normal"); setTimeout(function(){jQuery(self).parent().parent().remove()},600) }) /*setTimeout(function(){ //jQuery("#frontend_form_messages_3 .success_message3").fadeout(); jQuery("#frontend_form_messages_3 .success_message").fadeOut(); }, 5000);*/
// responseText , updates the div in target specified in options jQuery("#loader-icon-3").hide();
var matched = responseText.search('successmsg_'); if(matched != -1) {
var formId = "3"; grecaptcha.reset(); jQuery('#wpdevart-forms-3').hide(); return;
setTimeout(function(){ jQuery('#wpdevart-forms-3')[0].reset(); jQuery("#wpdevart-forms-"+formId).each(function() { jQuery(this).find(".input-file ").each(function(){ jQuery(this).find("input").val(""); }); jQuery(this).find(".file-upload-btn + span").each(function() { jQuery(this).text(" "); }); }); },100); } grecaptcha.reset(); return false;
} function showRequest() { return false; }
jQuery(document).on("click","[type=reset].ws-reset-form",function(e){ formId= jQuery(this).attr('data-attr'); //reset jQuery("#wpdevart-forms-"+formId).each(function(){ jQuery(this).find(".input-file ").each(function(){ jQuery(this).find("input").val(""); }); jQuery(this).find(".file-upload-btn + span").each(function(){ jQuery(this).text(" "); }); jQuery("#wpdevart-forms-"+formId)[0].reset(); }); grecaptcha.reset(); return false;
}); });