Multiple TCPA Disclosures
  • 21 Feb 2025
  • 1 Minute to read
  • Dark
    Light

Multiple TCPA Disclosures

  • Dark
    Light

Article summary

Summary

TCPA Guardian can capture multiple TCPA disclosures from the same web page. In order for the Jornaya javascript snippet to differentiate between disclosures, the <input> tag associated with the TCPA disclosure should include one of the following identifying attributes:

  • A data-leadid-type attribute with the value “disclosure”.

  • A name attribute containing “leadid_tcpa_disclosure”.

  • A class attribute defining at least one class name that contains “leadid_tcpa_disclosure”.

  • An id attribute containing “leadid_tcpa_disclosure” (Note: ID of each disclosure’s input must be unique.)To accomplish this, a letter, number, word, or character should be appended to the required ID (‘leadid_tcpa_disclosure’). For example, the inputs of three different disclosures on a page could appear as follows:


    Markup
    <input type="checkbox" id="leadid_tcpa_disclosure_1"/>
     
    
    <input type="checkbox" id="leadid_tcpa_disclosure_2"/>
     
    
    <input type="checkbox" id="leadid_tcpa_disclosure_3"/>

OR

<input type="checkbox" id="leadid_tcpa_disclosure_A"/>
 

<input type="checkbox" id="leadid_tcpa_disclosure_B"/>
 

<input type="checkbox" id="leadid_tcpa_disclosure_C"/>


The appended distinguisher could also be an entire word or phrase. The only requirement is that they are unique to each other.

Review your Script and TCPA Label Implementation

To review your implementation and confirm the disclosures are being captured, please reference this article.


Was this article helpful?