HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/appointmentbook.me/wp-content/plugins/woocommerce/assets/js/frontend/account-i18n.js
/* global Cookies */
jQuery( function( $ ) {	
    // Select all elements with the class [role="alert"] attribute that contain text
    var notices = $('[role="alert"]').filter(function() {
        return $(this).text().trim().length > 0;
    });

    if (notices.length > 0) {
        /**
         * Queuing the focus event at last of the event queue
         * to override any other focus events in case of critical error.
         * For example, "Skip to content" was being focused just after
         * the error, resulting in the voiceover breaking the message
         * in between.
         */
        setTimeout(function() {
            $(notices[0]).attr('tabindex', '-1').focus();
        });
    }
});