Support for Verifiers

Find easy-to-follow guidance to help quickly answer questions related to ordering, billing, invoicing, and more.
Looking to download or manage your individual Employment Data Report? Visit employees.theworknumber.com

What Can We Help You With Today?

Explore By Topic

Signing Up To Request Verifications

Login Support

Account Usage

General Information

Billing and Invoicing

Explore Our Entire Knowledge Base

'); $("#btnSubmit").attr("disabled", false); } else { $("#btnSubmit").attr("disabled", true); document.forms["contactus-form"].elements["_com_equifax_webcoe_faq_questions_FaqQuestionsPortlet_INSTANCE_cnoo_capcha"].value = token; $('.SupportForVerifiersForm select').prop('disabled', false); data = $('#contactus-form').serialize(); $.ajax({ url: "https://theworknumber.com/support-for-verifiers?p_p_id=com_equifax_webcoe_faq_questions_FaqQuestionsPortlet_INSTANCE_cnoo&p_p_lifecycle=1&p_p_state=normal&p_p_mode=view&_com_equifax_webcoe_faq_questions_FaqQuestionsPortlet_INSTANCE_cnoo_jakarta.portlet.action=submitForm&p_auth=ZdnVLwt0", type: 'post', data: data, success: function (msg) { window.location.href = "https://theworknumber.com/thank-you-support"; }, }); } }); function getChilds(uuid, container, index){ var level = index+1; jQuery.getJSON( "https://theworknumber.com/support-for-verifiers?p_p_id=com_equifax_webcoe_faq_questions_FaqQuestionsPortlet_INSTANCE_cnoo&p_p_lifecycle=2&p_p_state=normal&p_p_mode=view&p_p_cacheability=cacheLevelPage&questionuuid="+uuid.trim(), function( data ) { cleanDIV(container); if(data.hasquestions == "yes"){ var content = '
'; content+=''; content+='
'; $('.'+container).append(content); $('#_com_equifax_webcoe_faq_questions_FaqQuestionsPortlet_INSTANCE_cnoo_'+uuid.trim()).on('change', function () { var selectedOption = $('#_com_equifax_webcoe_faq_questions_FaqQuestionsPortlet_INSTANCE_cnoo_'+uuid.trim()+' option:selected').val(); cleanDIV('faq-content'); hideForm("form-content"); hideForm("faq-cta"); getChilds(selectedOption, container+index, level); }); }else{ $('.faq-content').append('
We Think This Might Help
'); for(var i=0; i< data.faqs.length; i++){ $('.faq-content').append(getFAQHTML(data.faqs[i])); } if(data.show=="yes"){ showForm("faq-cta"); } } }); } function cleanDIV(divID){ var div = document.getElementById(divID); div.innerHTML=""; } function getChildHTML(child){ return ''; } function getFAQHTML(child){ return '
'+safetext(child.title)+ '

'+child.desc+'

'; } function showForm(div){ document.getElementById(div).style.display="block"; if(div=="form-content"){ $('.SupportForVerifiersForm select').prop('disabled', 'disabled'); $('#selectQuestionCase').prop('disabled', 'disabled'); } } function hideForm(div){ document.getElementById(div).style.display="none"; }