Guest User

Untitled

a guest
Nov 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. add_filter( 'wp_footer', function() { ?>
  2.  
  3. <script>
  4. ( function( $ ) {
  5. 'use strict';
  6. $( document ).on( 'ready', function() {
  7. $( '.wpex-mobile-menu li.menu-item-has-children > a' ).each( function() {
  8. var $this = $( this );
  9. $this.attr( 'tabindex', 0 ); // lets give the links a tabindex
  10. $this.live( 'keyup', function( e ) {
  11. var code = e.keyCode || e.which;
  12. if ( code === 9 ) { // 9 is the js key code for tab
  13. $( this ).find( '> .wpex-open-submenu' ).trigger( 'click' ); // toggle the dropdown function whenever we tab onto a link that has submenus
  14. }
  15. } );
  16. } );
  17. } );
  18. } ( jQuery ) );
  19. </script>
  20.  
  21. <?php }, 99 );
Add Comment
Please, Sign In to add comment