Guest User

Untitled

a guest
Oct 20th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function addOnStateToMenu() {
  2.  
  3. var slugIndex = getSlugIndex();
  4. var menus = new Array('home','about-us','gsa-schedules', 'services', 'careers', 'case-studies','contact-us');
  5. var parent = (window.location.pathname).split('/')[slugIndex];
  6.  
  7. $('#menuList li').each(function(index){
  8. if ( parent === menus[index])
  9. $(this).addClass('current-menu-parent');
  10. });
  11. }
  12. function getSlugIndex() {
  13. if (window.location.hostname.indexOf("localhost") != -1 ){
  14. return 2;
  15. }
  16. else{
  17. return 1;
  18. }
  19. }
Add Comment
Please, Sign In to add comment