Created
June 1, 2023 09:11
-
-
Save mihdan/dc187898fb0cf07ec487a890ca27540c to your computer and use it in GitHub Desktop.
Раскрывает первый элемент виджета Elementor -> Toggle по умолчанию
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( function ( $ ) { | |
$( function () { | |
/** | |
* Раскрывает первый элемент виджета Toggle по умолчанию. | |
*/ | |
$( '.elementor-toggle-item:first-child' ) | |
.children( '.elementor-tab-title' ) | |
.addClass( 'elementor-active' ) | |
.attr({ | |
'aria-expanded': 'true', | |
tabindex: '0', | |
'aria-selected': 'true' | |
}) | |
.end() | |
.children( '.elementor-tab-content' ) | |
.addClass( 'elementor-active' ) | |
.css( 'display', 'block' ); | |
}); | |
} )( window.jQuery ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment