- ACF Pro
- Contact Form 7
- Custom Post Type UI
- Google Analytics Dashboar for WP
- Nested Pages
- Snazzy Maps
- Yoast SEO
- WP Smushit
- WP Super Cache
This file contains hidden or 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
| $(document).ready(function(){ | |
| // Event Click in whatever tag HTML | |
| $( '#section' ).click(function(event){ | |
| event.stopPropagation(); | |
| $( '.button' ).toggleClass('open'); | |
| }); | |
| // Function click out and close function up | |
| $( document ).click( function() { | |
| var btn = $( '.button' ); |
This file contains hidden or 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
| # Global | |
| ._* | |
| *.log | |
| .AppleDouble | |
| .DS_Store | |
| .localized | |
| .LSOverride | |
| .Spotlight-V100 | |
| .Trashes | |
| Icon |
This file contains hidden or 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
| $('.panel-collapse').on('show.bs.collapse', function () { | |
| $(this).siblings('.panel-heading').addClass('active'); | |
| }); | |
| $('.panel-collapse').on('hide.bs.collapse', function () { | |
| $(this).siblings('.panel-heading').removeClass('active'); | |
| }); |
OlderNewer