www.hatherleigh.com Open in urlscan Pro
2606:4700::6812:1f85  Public Scan

Submitted URL: http://www.hatherleigh.com//
Effective URL: https://www.hatherleigh.com//
Submission: On August 13 via api from US — Scanned from DE

Form analysis 3 forms found in the DOM

GET /collections

<form action="/collections" method="get">
  <div class="form__search">
    <label for="q" class="form__search-label">
      <input type="search" name="q" placeholder="Find a course!" value="" class="form__control form__control-search" aria-label="Search">
    </label>
  </div>
</form>

POST /tenant_leads

<form id="new_lead_f0435cf2dc" action="/tenant_leads" accept-charset="UTF-8" data-remote="true" method="post">
  <input name="utf8" type="hidden" value="✓" autocomplete="off"><input type="hidden" name="tenant_lead[page_url]" value="https://www.hatherleigh.com//">
  <label for="new_lead_f0435cf2dc-email" class="form__label"> Email </label>
  <input id="new_lead_f0435cf2dc-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" required="" aria-required="true" class="form__control"
    aria-describedby="new_lead_f0435cf2dc-error">
  <p aria-live="polite" id="new_lead_f0435cf2dc-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
  <div class="form__group">
    <div>
      <input id="new_lead_f0435cf2dc-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_f0435cf2dc-accept-error">
      <label for="new_lead_f0435cf2dc-accept" class="form__label--checkbox">Yes please, save my details so you can send me educational content that is relevant and helpful.</label>
    </div>
    <p aria-live="polite" id="new_lead_f0435cf2dc-accept-error" class="form__error-msg hidden" role="alert"> Please check this box if you wish to proceed </p>
  </div>
  <div class="form__group form__button-group">
    <input id="new_lead_f0435cf2dc-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" aria-disabled="true">
    <p class="lead-capture__success-msg sr-only"> Thank You </p>
    <p aria-live="polite" class="lead-capture__error-msg" role="alert"> Oops, something went wrong. Please try again with a different email address. </p>
  </div>
  <script>
    $(function() {
      $("#new_lead_f0435cf2dc > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_f0435cf2dc').addEventListener('thinkific:success', function(event) {
      $('#new_lead_f0435cf2dc-submit-lead').val("Thank You");
      $('#new_lead_f0435cf2dc').addClass('lead-capture__success')
      $('#new_lead_f0435cf2dc .lead-capture__error-msg').hide();
      $('#new_lead_f0435cf2dc .lead-capture__success-msg').show();
      setTimeout(function() {
        $('#new_lead_f0435cf2dc-submit-lead').val('Submit');
        $('#new_lead_f0435cf2dc').removeClass('lead-capture__success')
        $('#new_lead_f0435cf2dc')[0].reset();
        $('#new_lead_f0435cf2dc-submit-lead').attr('aria-disabled', 'true');
      }, 6000);
    })
    document.getElementById('new_lead_f0435cf2dc').addEventListener('thinkific:error', function(event) {
      $('#new_lead_f0435cf2dc .lead-capture__error-msg').show();
      $('#new_lead_f0435cf2dc .lead-capture__success-msg').hide();
    })
    $('#new_lead_f0435cf2dc-accept').on('click', function() {
      if ($('#new_lead_f0435cf2dc-accept').is(':checked')) {
        $('#new_lead_f0435cf2dc-submit-lead').removeAttr('aria-disabled');
      } else {
        $('#new_lead_f0435cf2dc-submit-lead').attr('aria-disabled', 'true');
      }
    });
  </script>
  <script>
    function addErrorMsg(fieldId, errorId) {
      fieldId.addClass('input--error');
      fieldId.attr("aria-invalid", "true");
      errorId.removeClass('hidden');
    }

    function removeErrorMsg(fieldId, errorId) {
      fieldId.removeClass('input--error');
      fieldId.attr("aria-invalid", "false");
      errorId.addClass('hidden');
    }
    var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    var $email = $('#user\\[email\\]');
    var $emailError = $('#user\\[email\\]-error')
    $email.on('focusout', function() {
      if (!regex.test($email.val())) {
        addErrorMsg($email, $emailError);
      } else {
        removeErrorMsg($email, $emailError);
      }
    });
    var $leadCapture = $('#new_lead_f0435cf2dc-email')
    var $leadCaptureError = $('#new_lead_f0435cf2dc-error')
    $leadCapture.on('focusout', function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $leadCaptureCheckbox = $('#new_lead_f0435cf2dc-accept');
    var $leadCaptureCheckboxError = $('#new_lead_f0435cf2dc-accept-error');
    $leadCaptureCheckbox.on('focusout', function() {
      if (!$leadCaptureCheckbox.is(':checked')) {
        addErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
      } else {
        removeErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
      }
    });
    var $password = $('#user\\[password\\]');
    var $passwordError = $('#user\\[password\\]-error')
    $password.on('focusout', function() {
      if ($password.val().length < 1) {
        addErrorMsg($password, $passwordError);
      } else {
        removeErrorMsg($password, $passwordError);
      }
    });
    var $firstName = $('#user\\[first_name\\]');
    var $firstNameError = $('#user\\[first_name\\]-error');
    $firstName.on('focusout', function() {
      if ($firstName.val() === '') {
        addErrorMsg($firstName, $firstNameError);
      } else {
        removeErrorMsg($firstName, $firstNameError);
      }
    });
    var $lastName = $('#user\\[last_name\\]');
    var $lastNameError = $('#user\\[last_name\\]-error');
    $lastName.on('focusout', function() {
      if ($lastName.val() === '') {
        addErrorMsg($lastName, $lastNameError);
      } else {
        removeErrorMsg($lastName, $lastNameError);
      }
    });
    var $checkbox = $('#user\\[terms\\]');
    var $checkboxError = $('#user\\[terms\\]-error');
    $checkbox.on('focusout', function() {
      if (!$checkbox.is(':checked')) {
        addErrorMsg($checkbox, $checkboxError);
      } else {
        removeErrorMsg($checkbox, $checkboxError);
      }
    });
    var $file = $('.my-account__avatar-label');
    $file.on('change', function() {
      $file.append('<p aria-live="polite" id="my-account__avatar--error" class="sr-only" role="alert">liquid.partials.form.file_changed</p>')
    });
    var $select = $('.custom-select');
    var $selectError = $('#custom-select-error')
    $select.on('focusout', function() {
      if ($(this).prop('required')) {
        if (!$select.val()) {
          addErrorMsg($select, $selectError);
        } else {
          removeErrorMsg($select, $selectError);
        }
      }
    });
    var $customField = $('.custom-field');
    var $customFieldError = $('#custom-field-error');
    $customField.on('focusout', function() {
      if ($(this).prop('required')) {
        if ($customField.val() === '') {
          addErrorMsg($customField, $customFieldError);
        } else {
          removeErrorMsg($customField, $customFieldError);
        }
      }
    });
  </script>
</form>

Name: previewFormPOST https://secure.campaigner.com/CSB/Public/ProcessHostedForm.aspx

<form name="previewForm" method="post" action="https://secure.campaigner.com/CSB/Public/ProcessHostedForm.aspx" id="previewForm" enctype="multipart/form-data" target="_blank">
  <script type="text/javascript">
    var theForm = document.forms.previewForm;

    function __doPostBack(o, e) {
      theForm.onsubmit && 0 == theForm.onsubmit() || (theForm.__EVENTTARGET.value = o, theForm.__EVENTARGUMENT.value = e, theForm.submit())
    }
    theForm || (theForm = document.previewForm)
  </script><input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="5523BD75">
  <div id="LanguageDropdown" class="LanguageDropdown"></div>
  <div class="grid">
    <div class="col-6-12 mobile-col-1-1"><label for="547345FF" class="sr-only">First Name:</label><input name="547345FF" type="text" maxlength="4000" id="547345FF" placeholder="First Name" contactattributeid="547345"></div>
    <div class="col-6-12 mobile-col-1-1"><label for="547350FF" class="sr-only">Last Name:</label><input name="547350FF" type="text" maxlength="4000" id="547350FF" placeholder="Last Name" contactattributeid="547350"></div>
  </div>
  <div class="grid">
    <div class="col-1-1"><label for="547355FF" class="sr-only">Email:</label><input name="547355FF" type="text" maxlength="4000" placeholder="Email Address*" id="547355FF" class="required" contactattributeid="547355"></div>
  </div>
  <div class="grid">
    <div class="col-1-1"><input type="submit" name="SubmitButton" value="Submit" id="SubmitButton"></div>
  </div><input type="hidden" name="FormInfo" id="FormInfo" value="851fdbbe-3994-49b9-bc5d-a1d2a8743d3d"> <input type="hidden" name="AccId" id="AccId" value="1211">
</form>

Text Content

Skip to main content


HATHERLEIGH MEDICAL EDUCATION

Toggle menu Menu
 * 
 * All Courses
   * Addictions CE
   * Mental Health Counseling CE
   * Nursing CE
   * Psychiatry CME
   * Psychology CE
   * Rehabilitation CE
   * Other Courses
 * Pricing
 * How to Earn CME & CE
 * Sign In


ELEVATE YOUR PROFESSIONAL EXPERTISE WITH PREMIER CME & CE COURSES

Unlock the gold standard in continuing medical education with our expansive
selection of over 75 accredited CME & CE courses. With a legacy spanning over
four decades, we're not just a trusted source—we're your partner in lifelong
learning.

Join the ranks of healthcare professionals who choose excellence. Start your
journey today!

Start Earning Credits Now


YOUR BENEFITS INCLUDE:

 * Instant Access: Dive into our courses at your convenience and pace.

 * Immediate Certification: Achieve and display your accomplishments with
   instant certificates.

 * Flexible Formats: Choose from our dynamic online courses or traditional print
   editions.

 * Risk-Free Learning: Your satisfaction is paramount, backed by our Money-Back
   Guarantee.


ACCREDITATIONS INCLUDE:




WHAT YOUR COLLEAGUES ARE SAYING


"I LIKE YOUR TRAININGS A LOT... MEETS MY CEU NEEDS VERY WELL."

–L.H. in OR




"SUCH A NICE RESPONSE TIME AND LIVE CHAT. BEST ONE I HAVE BEEN ON EVER!"

–C. B. in NC




"GREAT PROGRAM - LOOK FORWARD TO MORE!"

–Dr. M. C. in AL




"PERFECT! YOUR COMPANY HAS ALWAYS BEEN FABULOUS TO WORK WITH!"

–N. M. in WI




"THANK YOU SO MUCH FOR ALWAYS HELPING ME GET MY CEU HOURS... I APPRECIATE YOUR
MATERIAL AND STAFF VERY MUCH."

–J. R. in TX




"YOU ARE AWESOME. KEEP UP THE GREAT WORK."

-Dr. D. W. in MO




"DIRECTIONS IN PSYCHIATRY IS A GREAT SERIES – VERY PRACTICAL AND HELPFUL."

–M.J., MD in GA




"THANK YOU FOR YOUR PRODUCTS, SUPPORT, AND PROFESSIONALISM!"

–P.B. in TX




"...THE BEST PRACTICAL INFORMATIONAL FORMAT I HAVE EXPERIENCED ONLINE."

–D.G. in MO




"...EXCELLENT CUSTOMER SERVICE AND FOLLOW-UP. WHAT A GREAT JOB YOU DO!"

–R.D. in OH




"I LIKE YOUR TRAININGS A LOT... MEETS MY CEU NEEDS VERY WELL."

–L.H. in OR




"SUCH A NICE RESPONSE TIME AND LIVE CHAT. BEST ONE I HAVE BEEN ON EVER!"

–C. B. in NC




"GREAT PROGRAM - LOOK FORWARD TO MORE!"

–Dr. M. C. in AL




"PERFECT! YOUR COMPANY HAS ALWAYS BEEN FABULOUS TO WORK WITH!"

–N. M. in WI




"THANK YOU SO MUCH FOR ALWAYS HELPING ME GET MY CEU HOURS... I APPRECIATE YOUR
MATERIAL AND STAFF VERY MUCH."

–J. R. in TX




"YOU ARE AWESOME. KEEP UP THE GREAT WORK."

-Dr. D. W. in MO




"DIRECTIONS IN PSYCHIATRY IS A GREAT SERIES – VERY PRACTICAL AND HELPFUL."

–M.J., MD in GA




"THANK YOU FOR YOUR PRODUCTS, SUPPORT, AND PROFESSIONALISM!"

–P.B. in TX




"...THE BEST PRACTICAL INFORMATIONAL FORMAT I HAVE EXPERIENCED ONLINE."

–D.G. in MO




"...EXCELLENT CUSTOMER SERVICE AND FOLLOW-UP. WHAT A GREAT JOB YOU DO!"

–R.D. in OH






YOUR DISTINGUISHED FACULTY INCLUDES


LANTIE JORANDBY, MD

Dr. Jorandby is Double board certified in Addiction Psychiatry and Psychiatry &
Neurology; she is Chief Medical Officer at Lakeview Health, Jacksonville,
Florida, USA.


SETH NORRHOLM, PHD

Dr. Norrholm is Scientific Director of the Neuroscience Center for Anxiety,
Stress, and Trauma in the Department of Psychiatry and Behavioral Neurosciences
at Wayne State School of Medicine in Detroit, MI.


ASIM SHAH, MD

Professor at the Menninger Department of Psychiatry and Behavioral Sciences,
Family and Community Medicine, Baylor College of Medicine, Houston, TX; Clinical
Professor, Department of Psychiatry, University of Oklahoma, Norman, OK.


LANTIE JORANDBY, MD

Dr. Jorandby is Double board certified in Addiction Psychiatry and Psychiatry &
Neurology; she is Chief Medical Officer at Lakeview Health, Jacksonville,
Florida, USA.


SETH NORRHOLM, PHD

Dr. Norrholm is Scientific Director of the Neuroscience Center for Anxiety,
Stress, and Trauma in the Department of Psychiatry and Behavioral Neurosciences
at Wayne State School of Medicine in Detroit, MI.


ASIM SHAH, MD

Professor at the Menninger Department of Psychiatry and Behavioral Sciences,
Family and Community Medicine, Baylor College of Medicine, Houston, TX; Clinical
Professor, Department of Psychiatry, University of Oklahoma, Norman, OK.


LANTIE JORANDBY, MD

Dr. Jorandby is Double board certified in Addiction Psychiatry and Psychiatry &
Neurology; she is Chief Medical Officer at Lakeview Health, Jacksonville,
Florida, USA.




ALL-ACCESS DIGITAL SUBSCRIPTIONS

Choose the plan that works for you with 1-year access


 * CME DIGITAL ALL ACCESS
   
   Bundle
   
   1-Year All Access Subscription: CME courses including Directions in
   Psychiatry
   
   $499.00


 * CE DIGITAL ALL ACCESS
   
   Bundle
   
   1-Year All Access Subscription: Over 70 courses for your CE needs
   
   $299.00


INDIVIDUAL COURSE PURCHASE

Choose from 75+ CE/CME courses

Purchase individual courses with print option.
View All Courses


COURSE CATEGORIES


 * PSYCHIATRY CME


 * PSYCHOLOGY CE


 * MENTAL HEALTH COUNSELING CE


 * REHABILITATION CE


 * ADDICTIONS CE


 * NURSING CE


 * ETHICS FOR PSYCHOLOGISTS


 * ETHICS FOR COUNSELORS


 * OTHER COURSES


 * ALL COURSES

Hatherleigh offers American Medical Association (ACCME) approved, American Board
of Psychiatry and Neurology (ABPN) approved, Royal College of Canada (RCC)
approved, American Nurses Credentialing Center (ANCC) accepted, American
Psychological Association (APA) approved, National Board of Certified Counselors
(NBCC) approved, Commission on Rehabilitation Counselor Certification (CRCC)
pre-approved, Commission for Case Manager Certification (CCMC) pre-approved,
Certified Disability Management Specialist Commission (CDMSC) pre-approved,
National Association for Alcoholism and Drug Abuse Counselors (NAADAC) approved,
and New York State Office of Addiction Services and Supports (OASAS) approved
continuing education and continuing medical education.


SIGN UP FOR HATHERLEIGH EMAILS

Add your email to the mailing list to get the latest information on new courses,
special offers and discounts.

Email

Please enter a valid email address

Yes please, save my details so you can send me educational content that is
relevant and helpful.

Please check this box if you wish to proceed

Thank You

Oops, something went wrong. Please try again with a different email address.

Click here for more information about our new website features.

Toll Free Support & Ordering 1-800-367-2550 (M-F 9a-5p EST)

 * Home
 * News
 * Contact Us/FAQ
 * Faculty
 * Approval Information
 * Privacy Policy

 * 
 * 

Copyright © 2024 The Hatherleigh Company, Ltd. All rights reserved.



X


GET THE LATEST CE & CME COURSE RELEASE ANNOUNCEMENTS, SPECIAL SAVINGS AND MORE
FROM HATHERLEIGH DELIVERED DIRECTLY TO YOUR INBOX!

First Name:
Last Name:
Email: