A smiling healthcare worker in scrubs holds a clipboard, surrounded by other medical professionals in a hospital setting.

Continuing Education

  1. CPR Training
  2. CNA Exam Review
  3. CEU’s

Objective                                                                                 
This review class formulates the nursing assistant students for the certification exam that is essential int the State of Florida to become a Certified Nursing Assistant (CAN). The instructor goes over the theory and the 22 practical skills that are part of the written and clinical skills exam. This course reviews as well the significance of standard procedures, ethical standards, legal limitations, and medical abbreviations, the awareness needed to work as a Certified Nursing Assistant (CAN).

Requirements
Students have to present proof of graduation from an approved Nursing Assistant Program, Patient Care Technician Program, or equivalent approved training/education.

Disclaimer
This CNA exam review class is not equivalent to completing an approved training program. Students will not receive a certificate of completion or diploma after completing the review course. The unique purpose of this class is to help students that have previously completed a training program prepare to sit for the Florida Certified Nursing Assistant examination. If you would like to have more information about the application and certification requirements, I recommend you to visit the Florida Board of Nursing website at  https://floridasnursing.gov/licensing

5/5 (1 Review)
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] } }); }); });