A diverse group of healthcare professionals in scrubs, smiling together, conveying teamwork and camaraderie in a medical setting.

Get More Information

Palmetto Medical Institute inspires students to pursue a career for which they have a passion. We offer education to help each individual gain the knowledge and skills that will lead to success.

We take education very seriously. We strive to stay attuned to student’s personal academic and career goals as we help each pursue studies geared toward advancing their road to achieve full potential.

OUR Programs are Approved and Licensed by:

Logo of the Florida Department of Education featuring a stylized road leading to a dome, with a blue and yellow color scheme.
An elderly woman smiles warmly while engaged in conversation with a younger person in a bright, cozy living room.

Home Health Aide

Upon completion of the Home Health Aide program graduates will be able to seek entry level employment as a Home Health Aide with clinics, assisted living facilities, Home Health Agencies, and other healthcare practice facilities.

Logo of the Florida Board of Nursing featuring a caduceus symbol and text in blue and yellow.
Two healthcare professionals in scrubs collaborate, reviewing notes or a document, with a focused yet friendly demeanor.

Nursing Assistant

Upon successful completion of the Nursing Assistant course, students will be adequately prepared to take your state's nursing assistant certification exam.

We take your education very seriously. We strive to stay attuned to your personal academic and career goals as we help you pursue studies geared toward realizing your full potential. Our own goal is to provide you with as many advantages at our disposal. You will study with professionals using industry-driven credentials, curriculum, software, and equipment. We encourage you to jump into your passion from the moment you engage in our classes. Expect to find project-oriented classes in your major from week one.  

Scroll to Top
document.addEventListener("DOMContentLoaded", function () { // 1. Target all top-level parent menu links that have submenus but no active link (no href or empty) const parentToggles = document.querySelectorAll(".menu-item-has-children > a:not([href]), .menu-item-has-children > a[href='']"); parentToggles.forEach(function (toggle) { // 2. Set the mandatory accessibility attributes toggle.setAttribute("tabindex", "0"); // Makes it focusable via Tab key [1] toggle.setAttribute("role", "button"); // Tells screen readers it is an interactive button [1, 4] toggle.setAttribute("aria-haspopup", "menu"); // Warns screen readers that a menu is attached [1, 4] toggle.setAttribute("aria-expanded", "false"); // Sets the initial closed state [1, 4] // Find the adjacent submenu const submenu = toggle.nextElementSibling; if (submenu) { // Generate a unique ID to link the toggle to the submenu const uniqueId = "submenu-" + Math.random().toString(36).substr(2, 9); submenu.setAttribute("id", uniqueId); toggle.setAttribute("aria-controls", uniqueId); // Establishes programmatic relationship [1, 4] } // Toggle function function toggleMenu(event) { event.preventDefault(); const expanded = toggle.getAttribute("aria-expanded") === "true"; // Toggle aria-expanded state [1, 5] toggle.setAttribute("aria-expanded", !expanded); // Toggle the visibility class (targets your theme/Elementor submenu styling) if (submenu) { submenu.classList.toggle("sub-menu-open"); } } // 3. Listen for Clicks (Click covers touch and mouse) [6] toggle.addEventListener("click", toggleMenu); // 4. Listen for Keyboard interactions (Enter & Space) [3] toggle.addEventListener("keydown", function (event) { if (event.key === "Enter" || event.key === " ") { event.preventDefault(); toggleMenu(event); } // Close menu on Escape key press [3] if (event.key === "Escape") { toggle.setAttribute("aria-expanded", "false"); if (submenu) submenu.classList.remove("sub-menu-open"); toggle.focus(); // Focus management: return focus to the trigger [3] } }); }); });