Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $(document).ready(function () {
  2.  
  3. if (window.location.href.indexOf("en") != -1) {
  4. console.log("esta en ingles");
  5. }
  6.  
  7. //cuando cliqueo el boton #goen:
  8. $('#goen').click (function(){
  9. // renueva el contenido
  10. $('.en').css('visibility','visible');
  11. $('.es, .por').css('visibility','hidden');
  12.  
  13. //agrega parametro ?lang=en a los links con la clase "tradulink"
  14. //var url = window.location.href;
  15. $('.tradulink').attr("href", "?lang=en");
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement