Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. jQuery(document).ready(function(){
  2.  
  3. var enlace = window.location.href;
  4. if (enlace.includes("/en/")) {
  5. jQuery('ul.flags li:nth-child(2)').hide();
  6. } else {
  7. jQuery('ul.flags li:nth-child(1)').hide();
  8. }
  9.  
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement