Get in Touch
Technical Support
Need help with your Conversifi account?
Send us a message!
Request a Demo
Want to see Conversifi in action?
Fill out our form!
Reserve Seats
Ready to get Conversifi for your course?
Get started!
Chat With Us
Have questions or want to connect with us?
Send a message!
Contact Us
Feel free to visit our FAQs for more information.
Contact Us 2
Feel free to visit our FAQs for more information.
Contact Us 3
Feel free to visit our FAQs for more information.
Contact Us 4
Feel free to visit our FAQs for more information.
let technicalsupport = document.getElementById (“techsupport”);
let requestDemo = document.getElementById (“requestDemo”);
let purchaseConversifi= document.getElementById (“purchaseConversifi”);
let chatWithUs = document.getElementById (“chatWithUs”);
let form = document.getElementById(“form1”);
let form2 = document.getElementById(“form2”);
let form3 = document.getElementById(“form3”);
let form4 = document.getElementById(“form4”);
document.addEventListener(“DOMContentLoaded”, function() {
technicalsupport.addEventListener(‘click’, function() {
form4.style.display = ‘none’;
form3.style.display = ‘none’;
form2.style.display = ‘none’;
form.style.display = ‘block’;
console.log(“funcionando”);
});
requestDemo.addEventListener(‘click’, function() {
form4.style.display = ‘none’;
form3.style.display = ‘none’;
form2.style.display = ‘block’;
form.style.display = ‘none’;
console.log(“funcionando”);
});
purchaseConversifi.addEventListener(‘click’, function() {
form4.style.display = ‘none’;
form3.style.display = ‘block’;
form2.style.display = ‘none’;
form.style.display = ‘none’;
console.log(“funcionando”);
});
chatWithUs.addEventListener(‘click’, function() {
form4.style.display = ‘block’;
form3.style.display = ‘none’;
form2.style.display = ‘none’;
form.style.display = ‘none’;
console.log(“funcionando”);
});
});