What is the subject of your contact?
Empower new talent with Hotscool today!
© 2024 Hotscool Tecnologia Educacional Ltda | CNPJ: 37.982.240/0001-49
$(document).ready(function () {
$("#Objetivo-2").on("change", function(){
if($(this).val() == "Venda de Cursos Online"){
$("#Fase-do-Projeto-Vendas").show().attr("required","required");
$("#Fase-do-Projeto-Treinamentos").hide().removeAttr("required");
$("#Andamento-do-Conteudo-Vendas").show().attr("required","required");
}else{
$("#Fase-do-Projeto-Vendas").hide().removeAttr("required");
$("#Andamento-do-Conteudo-Vendas").hide().removeAttr("required");
$("#Fase-do-Projeto-Treinamentos").show().attr("required","required");
}
});
if(window.location.href.split('.')[0].split('//')[1] == "en"){
$("a[href='/por-que-a-hotscool']").attr("href","/why-hotscool");
$("a[href='/recursos']").attr("href","/features");
$("a[href='/contato']").attr("href","/contact");
$("a[href='/onboarding-de-colaboradores']").attr("href","/employee-onboarding");
$("a[href='/treinamento-de-colaboradores']").attr("href","/employee-training");
$("a[href='/treinamento-de-clientes']").attr("href","/customer-training");
$("a[href='/treinamento-de-parceiros']").attr("href","/partner-training");
$("a[href='/treinamento-em-produtos']").attr("href","/product-training");
$("a[href='/treinamento-da-forca-de-vendas']").attr("href","/sales-force-training");
$("a[href='/treinamento-em-compliance']").attr("href","/compliance-training");
$("a[href='/venda-de-cursos-online']").attr("href","/online-course-sales");
}
const str = window.location.href;
const after_ = str.substring(str.indexOf('?') + 1);
$("a[href='https://app.hotscool.com/register']").attr("href", "https://app.hotscool.com/register?"+after_);
$(function() {
$("a").attr('href', function(index, item) {
return item + (item.indexOf('?') != -1 ? "&"+after_ : "?"+after_);
});
});
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const utm_campaign = urlParams.get('utm_campaign');
const utm_medium = urlParams.get('utm_medium');
const utm_source = urlParams.get('utm_source');
$("#utm_campaign").val(utm_campaign);
$("#utm_medium").val(utm_medium);
$("#utm_source").val(utm_source);
$("#utm_campaign2").val(utm_campaign);
$("#utm_medium2").val(utm_medium);
$("#utm_source2").val(utm_source);
});