![]() Server : Apache/2.4.52 (Ubuntu) System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64 User : www-data ( 33) PHP Version : 8.1.2-1ubuntu2.21 Disable Function : NONE Directory : /var/www/theprintave/wp-content/plugins/woocommerce/assets/js/frontend/ |
/* 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(); }); } });