Jump to content
Fórum Script Brasil
  • 0

Mudar URL por função .click


Thiago Vilela

Question

Olá pessoal,

Estou usando uma função para alterar o idioma do meu site, a função troca os textos de acordo com as classe por meio de dois links: '.bt_english' e '.bt_portugues'.

Gostaria de modificar além dos textos as URL de alguns links, tentei usar o "getElementById" mas não funcionou. Segue código:

// Troca idioma

$('.bt_english').click(function() {

$(this).addClass('ativo');

$('.bt_portugues').removeClass('ativo');

$('#teste').document.getElementById('link').href="teste01.html";

$('.bt_portfolio').html('portfolio');

$('.bt_sobre').html('about');

$('.bt_contato').html('contact');

$('.bt_enviar').addClass('bt_enviar_en');

$('.hover_work').removeClass('pt');

});

$('.bt_portugues').click(function() {

$(this).addClass('ativo');

$('.bt_english').removeClass('ativo');

$('#teste').document.getElementById('link').href="teste02.html";

$('.bt_portfolio').html('portfólio');

$('.bt_sobre').html('sobre');

$('.bt_contato').html('contato');

$('.bt_enviar').removeClass('bt_enviar_en');

$('.hover_work').addClass('pt');

});

Como podem ver, a linha em azul é onde estou tentando mudar a URL do link ao executar a função da troca de texto.

Desde já, agradeço a ajuda pessoal!

Abs!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Tenta este:

// Troca idioma

$('.bt_english').click(function() {
$(this).addClass('ativo');
$('.bt_portugues').removeClass('ativo');

$('#teste').attr('href','/teste01.html');
$('.bt_portfolio').html('portfolio');
$('.bt_sobre').html('about');
$('.bt_contato').html('contact');

$('.bt_enviar').addClass('bt_enviar_en');
$('.hover_work').removeClass('pt');

});

$('.bt_portugues').click(function() {
$(this).addClass('ativo');
$('.bt_english').removeClass('ativo');

$('#teste').attr('href','/teste02.html');
$('.bt_portfolio').html('portfólio');
$('.bt_sobre').html('sobre');
$('.bt_contato').html('contato');

$('.bt_enviar').removeClass('bt_enviar_en');
$('.hover_work').addClass('pt');

});

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...