top of page
bottom of page
$w.onReady(function () { $w('#message').text = 'Bem-Vindo a Valdugas'; $w('#button').label = 'junte-se a nós'; $w('#button').onClick(() => { $w('#message').text = 'Bem-Vindo a Valdugas!'; }); }); // Make sure the element IDs in the code match the IDs of the elements on your site. // You can change an element’s ID using the Properties & Events panel located on the right side of the Code Panel.