(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "ef67uoeyji");
INOV Tech MSSP’s Web & Applications provides technology capabilities to companies so that they can attract more revenue channels from customers. Our digital hub covers website development, business application development (ERP, CRM…) migration and maintenance, SEO, SMM, Service, and Process automation.
INOV Cameroon created a Web & Applications Solution for our corporate partners who may not only looking to sustain their current business model & service but also who are looking to move ahead in the competition. Our service hub consists of Website designing & development, Application development & maintenance & Digital Marketing services for our clients. We have an experienced set of SMEs set up under a pod, who work hard to deliver improved ROI to our corporate partner and also create digital excellence for them to thrive.
Creating a digital fortress with an impeccable customer experience is what companie looks for in this digital age. What they need is to have a digital presence, which means accelerating their business through an omnichannel model and maximize their revenue through different platforms. INOV Cameroon while working with companies as able to create a Digital hub as a one-stop solution for any web & application development, maintenance, and support.
Web Development
As customers make decisions on the go, being accessible and providing relevant information to make those decisions is critical. We empower companies to walk those lines by designing & developing a website that imitates their personality and make them look elegant in front of their customer
App Development & Maintenance
We work with our corporate partner to provide top-notch web application development services at the cost-benefit level. We are specialized in rendering flexible and excellent quality web applications services through our SME’s
Digital Marketing
We are focused to deliver the right online marketing solutions to companies to increase their website reaches and generate leads. With our SEO, SMO, PPC, and Email Marketing Services; we strive to expand companies website’s online presence in a meaningful way
$.ajaxSetup({
contentType: 'application/json'
});
$(document).ready(function(){
$('#nocForm').submit(function (e) {
e.preventDefault();
var mailid = $('#email').val();
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if($("#g-recaptcha-response").val()==""){
$('.google_recaptcha_error').show();
}else{
$('.google_recaptcha_error').hide();
if(!(emailReg.test( mailid ))){
$('#mailid_val_error_msg').show();
$('#mailid_error_msg').hide();
}
else{
$('#mailid_val_error_msg').hide();
var domain_name = mailid.split("@");
var domain = domain_name[1].split(".");
let standard_domains = ['gmail','yahoo','google','outlook','msn','hotmail'];
if(true == standard_domains.includes(domain[0])){
$('#mailid_error_msg').show();
}
else{
$('#mailid_error_msg').hide();
data=[
{
"name": "firstname",
"value": $("input[name='firstname']").val(),
},
{
"name": "lastname",
"value": $("input[name='lastname']").val(),
},
{
"name": "company",
"value": $("input[name='company']").val(),
},
{
"name": "email",
"value": $("input[name='email']").val(),
},
{
"name": "country",
"value": $("input[name='country']").val(),
},
];
dataToHubspotNOC(data);
}
}
}
});
});
function dataToHubspotNOC(fields){
// Create the new request
var xhr = new XMLHttpRequest();
var url = 'https://api.hsforms.com/submissions/v3/integration/submit/8189631/01d3f58a-376c-4fb5-abb3-cc05941620cf'
// Example request JSON:
var data = {
"fields": fields,
"legalConsentOptions":{ // Include this object when GDPR options are enabled
"consent":{
"consentToProcess":true,
"text":"I agree to allow Example Company to store and process my personal data.",
"communications":[
{
"value":true,
"subscriptionTypeId":999,
"text":"I agree to receive marketing communications from Example Company."
}
]
}
}
}
var final_data = JSON.stringify(data)
xhr.open('POST', url);
// Sets the value of the 'Content-Type' HTTP request headers to 'application/json'
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var result = xhr.responseText;
result =JSON.parse(result);
var text=result.inlineMessage; //console.log(text);
$('#resulthub').html(text); // $('#resulthub').css("display","block");
var pdfurls = $('#resulthub').find('a').attr('href');
var link=document.createElement('a');
document.body.appendChild(link);
link.href=pdfurls;
link.setAttribute("target", "_blank");
link.click();
$('#nocForm').trigger("reset");
$("#exampleModal").modal('hide');
//alert(xhr.responseText); // Returns a 200 response if the submission is successful.
} else if (xhr.readyState == 4 && xhr.status == 400){
alert(xhr.responseText); // Returns a 400 error the submission is rejected.
} else if (xhr.readyState == 4 && xhr.status == 403){
alert(xhr.responseText); // Returns a 403 error if the portal isn't allowed to post submissions.
} else if (xhr.readyState == 4 && xhr.status == 404){
alert(xhr.responseText); //Returns a 404 error if the formGuid isn't found
}
}
// Sends the request
xhr.send(final_data)
}
$.ajaxSetup({
contentType: 'application/json'
});
$(document).ready(function(){
$('#helpdeskForm').submit(function (e) {
e.preventDefault();
var mailid = $('#email').val();
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if($("#g-recaptcha-response").val()==""){
$('.google_recaptcha_error').show();
}else{
$('.google_recaptcha_error').hide();
if(!(emailReg.test( mailid ))){
$('#mailid_val_error_msg').show();
$('#mailid_error_msg').hide();
}
else{
$('#mailid_val_error_msg').hide();
var domain_name = mailid.split("@");
var domain = domain_name[1].split(".");
let standard_domains = ['gmail','yahoo','google','outlook','msn','hotmail'];
if(true == standard_domains.includes(domain[0])){
$('#mailid_error_msg').show();
}
else{
$('#mailid_error_msg').hide();
data=[
{
"name": "firstname",
"value": $("input[name='firstname']").val(),
},
{
"name": "lastname",
"value": $("input[name='lastname']").val(),
},
{
"name": "company",
"value": $("input[name='company']").val(),
},
{
"name": "email",
"value": $("input[name='email']").val(),
},
{
"name": "country",
"value": $("input[name='country']").val(),
},
];
console.log(data);
dataToHubspotHelpdesk(data);
}
}
}
});
});
function dataToHubspotHelpdesk(fields){
// Create the new request
var xhr = new XMLHttpRequest();
var url = 'https://api.hsforms.com/submissions/v3/integration/submit/8189631/39e36377-91c8-44cd-b147-9cef0b5a5208'
// Example request JSON:
var data = {
"fields": fields,
"legalConsentOptions":{ // Include this object when GDPR options are enabled
"consent":{
"consentToProcess":true,
"text":"I agree to allow Example Company to store and process my personal data.",
"communications":[
{
"value":true,
"subscriptionTypeId":999,
"text":"I agree to receive marketing communications from Example Company."
}
]
}
}
}
var final_data = JSON.stringify(data)
xhr.open('POST', url);
// Sets the value of the 'Content-Type' HTTP request headers to 'application/json'
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var result = xhr.responseText;
result =JSON.parse(result);
var text=result.inlineMessage;
$('#resulthub').html(text);
var pdfurls = $('#resulthub').find('a').attr('href');
var link=document.createElement('a');
document.body.appendChild(link);
link.href=pdfurls ;
link.setAttribute("target", "_blank");
link.click();
$('#helpdeskForm').trigger("reset");
$("#exampleModal").modal('hide');
//alert(xhr.responseText); // Returns a 200 response if the submission is successful.
} else if (xhr.readyState == 4 && xhr.status == 400){
alert(xhr.responseText); // Returns a 400 error the submission is rejected.
} else if (xhr.readyState == 4 && xhr.status == 403){
alert(xhr.responseText); // Returns a 403 error if the portal isn't allowed to post submissions.
} else if (xhr.readyState == 4 && xhr.status == 404){
alert(xhr.responseText); //Returns a 404 error if the formGuid isn't found
}
}
// Sends the request
xhr.send(final_data)
}
Round the Clock Reliable Services
to Streamline, Upscale and Augment your
Security & IT Operations.
contact@mssp.inov.cm
+237 699 499 851
+237 679 424 164
Douala – Cameroon
Copyright ©2023 inov.com All Rights Reserved