Advertisement
EduardET

Untitled

Jun 24th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         function set_menu_attributes( el, location ) {
  5.             var links = el.find( 'a' );
  6.             links.each( function() {
  7.                 $( this ).attr( 'data-type', 'link' ).attr( 'data-location', location ).attr( 'data-description', $( this ).text() );
  8.             } )
  9.         }
  10.         set_menu_attributes( $( '#top-menu' ), 'main nav' )
  11.         set_menu_attributes( $( '#menu-footer-menu' ), 'footer nav' )
  12.     } );
  13. } )( jQuery );
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement