Login or Register - Louisiana State Bar Association (2024)

Browse by Delivery Type
  • OnDemand (208)
Hello, Guest Sign in
  • Sign In

    New Customer? Start Here

  • Frequently Asked Questions
Cart
"; $("#inreach_searchbox_cell").after(btnCell); //TFS: 19453:Enhancement :: Add “Catalog Preview” to Products Search Results entries. //TFS: 19991:Demo Comments :: Enhancement :: Add “Catalog Preview” to Products Search Results entries. //To diasable control in product preview. if ($("#DisableControl") === undefined || $("#DisableControl").text() === "") { $("#inreach_adv_search_btn").on("click", function() { if ($(this).attr("button_state") === "on") { $("#inreach_adv_search_container").hide(); $(this).removeClass("inreach_adv_search_btn_on"); $(this).attr("button_state", "off"); } else { $("#inreach_adv_search_container").show(); $(this).addClass("inreach_adv_search_btn_on"); $(this).attr("button_state", "on"); } }); } $("#ASStartDate").datepicker({ minDate: new Date(), onClose: function(selectedDate) { if (selectedDate === "") { $("#ASEndDate").datepicker("option", "minDate", new Date()); } else { $("#ASEndDate").datepicker("option", "minDate", selectedDate); } } }); $("#ASEndDate").datepicker({ minDate: new Date(), onClose: function(selectedDate) { $("#ASStartDate").datepicker("option", "maxDate", selectedDate); } }); $("#ASStartDate, #ASEndDate, #ASNumMiles, #ASPostalCode, #ASSpeaker, #ASMaxCredits, #ASMinCredits, #ASSearchTerm").floatlabel({ labelEndTop: "3px" }); $("#inreach_adv_search_container input").on("keyup", function(e) { // enter . if (e.keyCode === 13) { $("#ASSubmitBtn").click(); } }); $("input[type='text']").on("click", function() { $(this).select(); }); $.fn.GetOwnerCreditTypes = function() { $.getJSON('/api/GetCreditTypes', function (data) { for (var i = 0; i < data.length; i++) { $("#ASCreditTypes").append($("").text(data[i].Name).attr("value", data[i].Id)); } }); }; $.fn.GetOwnerCreditTypes(); $(document).tooltip({ items: "#ASSearchTermToolTip, #EventDateSearchToolTip, #PostalCodeSearchToolTip, #SpeakerSearchToolTip, #CreditsSearchToolTip", content: function() { var element = $(this).attr("id"); var txt = ""; switch (element) { case "ASSearchTermToolTip": txt = "

Search Term Options:

"; txt += "

Enter a term to search on and select a method for searching.

"; txt += "
    "; txt += "
  1. All Words: Search results will contain all words entered.
  2. "; txt += "
  3. Any Word: Search results will contain at least one word entered.
  4. "; txt += "
  5. Exact Phrase: Search results will contain the exact phrase entered.
  6. "; txt += "
"; break; case "EventDateSearchToolTip": txt = "

Event Date Search Options:MM/DD/YYYY

"; txt += "
    "; txt += "
  1. Adding a Start and End Date will show all events within that range, including the dates entered.
  2. "; txt += "
  3. Adding only a Start Date will show all events from that date forward.
  4. "; txt += "
  5. Adding only an End Date will show all events from that date back to today.
  6. "; txt += "
"; break; case "PostalCodeSearchToolTip": txt = "

Postal Code Search Options:

"; txt += "

Select the preferred Miles to travel from a particular Postal Code to return In-Person events within the specified miles.

"; txt += "

Note: The Postal Code is limited to five characters. Results returned will only show In-Person events as these are held at a physical location.

"; break; case "SpeakerSearchToolTip": txt = "

Speaker Search Options:

"; txt += "

Enter any combination of the speakers First and/or Last name, to find events they will be instructing.

"; txt += "

Note: The results returned will include all events with the specific speaker.

"; break; case "CreditsSearchToolTip": txt = "

Credit Search Options:

"; txt += "
    "; txt += "
  1. A Minimum and Maximum search will return events that range between the credits, including the numbers entered.
  2. "; txt += "
  3. A Minimum only search will return any event with that credit total or greater.
  4. "; txt += "
  5. A Maximum only search will return any event with that credit total or less.
  6. "; txt += "
  7. If a credit type is not selected, search will return results from all credit types.
  8. "; txt += "
"; break; } return txt; }, position: { my: "right+40 top+10", at: "left bottom" } }); $("#ASPostalCode").on("click keyup change focus blur", function() { if ($(this).val().length < 1) { $("#ASPostalCodeWatermark").show(); } else { $("#ASPostalCodeWatermark").hide(); } }); $("#ASSpeaker").on("click keyup change focus blur", function () { if ($(this).val().length < 1) { $("#ASSpeakerWatermark").show(); } else { $("#ASSpeakerWatermark").hide(); } }); $("#ASPostalCode").on("keyup", function() { if (isNaN($(this).val())) { $(this).val(""); } $(this).val($(this).val().substring(0, 5)); $(this).removeClass("inreach_adv_search_bad_input"); $("#inreach_adv_search_postalcode_error").remove(); }); $("#ASStartDate, #ASEndDate").on("blur", function() { if (!isGoodDate($(this).val())) { $(this).val(""); } $(this).removeClass("inreach_adv_search_bad_input").attr("placeholder", $(this).attr("org_placeholder")); }); $("#ASStartDate, #ASEndDate").on("focus", function() { $(this).attr("placeholder", "MM/DD/YYYY"); }); $("#ASMinCredits, #ASMaxCredits, #ASPostalCode").on("keydown", function(e) { // Allow: backspace, delete, tab, escape, enter and . if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 || // Allow: Ctrl+A / Ctrl+C / Ctrl+V ((e.keyCode === 65 || e.keyCode === 67 || e.keyCode === 86) && e.ctrlKey === true) || // Allow: home, end, left, right (e.keyCode >= 35 && e.keyCode <= 39)) { // let it happen, don't do anything return; } // Ensure that it is a number and stop the keypress if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); } }); $("#ASMinCredits").on("blur", function() { var minC = $(this); var maxC = $("#ASMaxCredits"); if (parseInt(minC.val()) > 0 && parseInt(maxC.val()) > 0) { if (parseInt(minC.val()) > parseInt(maxC.val())) { maxC.val(minC.val()); } } }); $("#ASMaxCredits").on("blur", function() { var maxC = $(this); var minC = $("#ASMinCredits"); if (parseInt(minC.val()) > 0 && parseInt(maxC.val()) > 0) { if (parseInt(minC.val()) > parseInt(maxC.val())) { minC.val(maxC.val()); } } }); $("#ASSubmitBtn").on("click", function() { $("[placeholder]").each(function() { var input = $(this); if (input.val() === input.attr("placeholder")) { input.val(""); } }); var startDate = encodeURIComponent($("#ASStartDate").val()); var endDate = encodeURIComponent($("#ASEndDate").val()); var postalCode = encodeURIComponent($("#ASPostalCode").val()); var speaker = encodeURIComponent($("#ASSpeaker").val()); var creditTypeId = encodeURIComponent($("#ASCreditTypes").val()); var creditTypeName = encodeURIComponent($("#ASCreditTypes option:selected").text()); var categoryId = encodeURIComponent($("#ASCategories").val()); var categoryName = encodeURIComponent($("#ASCategories option:selected").text()); var productAttributeId = encodeURIComponent($("#ASProductAttr").val()); var productAttributeName = encodeURIComponent($("#ASProductAttr option:selected").text()); var miles = encodeURIComponent($("#ASNumMiles").val()); var minCredits = encodeURIComponent($("#ASMinCredits").val()); var maxCredits = encodeURIComponent($("#ASMaxCredits").val()); var url = "/Search/AdvancedSearch/"; var args = "?startDate=" + startDate; args += "&endDate=" + endDate; args += "&postalCode=" + postalCode; args += "&speaker=" + speaker; args += "&creditTypeId=" + creditTypeId; args += "&creditTypeName=" + creditTypeName; args += "&categoryId=" + categoryId; args += "&categoryName=" + categoryName; args += "&productAttributeId=" + productAttributeId; args += "&productAttributeName=" + productAttributeName; args += "&miles=" + miles; args += "&minCredits=" + minCredits; args += "&maxCredits=" + maxCredits; if (postalCode.length > 0 && postalCode.length < 5) { $("#ASPostalCode").addClass("inreach_adv_search_bad_input"); $("#ASPostalCodeTable").after("

Error: Postal Code Invalid. Must be a 5 digit number.

"); return false; } $("#inreach_adv_search_loading").show(); $("#inreach_adv_search_container").css("opacity", ".5"); document.location = (url + args); return true; }); $("#ASResetBtn").on("click", function() { $(".inreach_adv_search_content input").each(function() { //$(this).focus(); $(this).val(""); $(this).blur(); }); $("#ASPostalCode").removeClass("inreach_adv_search_bad_input"); $("#inreach_adv_search_postalcode_error").remove(); $("#ASNumMiles").val("50"); $("#ASCreditTypes").val(""); $("#inreach_adv_search_container").focus(); }); $("#ASNumMiles").val("50"); });

Login or Register - Louisiana State Bar Association (3)

Event Date Search

Postal Code Search

Speaker Search

Credits Search

  • Home
  • »
  • Log in / Sign up

Returning Customer

Login or Register - Louisiana State Bar Association (4)indicates a required field

Login or Register - Louisiana State Bar Association (5)indicates a required field

Entered Address:
Address Results:
Login or Register - Louisiana State Bar Association (2024)
Top Articles
Latest Posts
Article information

Author: Golda Nolan II

Last Updated:

Views: 6491

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Golda Nolan II

Birthday: 1998-05-14

Address: Suite 369 9754 Roberts Pines, West Benitaburgh, NM 69180-7958

Phone: +522993866487

Job: Sales Executive

Hobby: Worldbuilding, Shopping, Quilting, Cooking, Homebrewing, Leather crafting, Pet

Introduction: My name is Golda Nolan II, I am a thoughtful, clever, cute, jolly, brave, powerful, splendid person who loves writing and wants to share my knowledge and understanding with you.