How to Add Jornaya TCPA Label / Tags
  • 11 Oct 2022
  • 1 Minute to read
  • Dark
    Light

How to Add Jornaya TCPA Label / Tags

  • Dark
    Light

Article Summary

Summary

The TCPA Disclosure label should be placed around the disclosure text displayed on your forms. We offer four different implementation options to support different user experiences. Below are code samples for each of the four implementation types we support.

TCPA Label Implementation Options:

No User Interaction
Checkbox
Radio Buttons
Yes/No Menu

PLEASE NOTE

By implementing the TCPA Disclosure label, you are granting permission for Jornaya to provide a copy of the disclosure displayed on the form to companies that audit your LeadiD tokens.

If you have multiple TCPA disclosures on your page, please refer to this article.

No User Interaction Required

<label>
  <input type="hidden" id="leadid_tcpa_disclosure"/>[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]
</label>

OR

<input type="hidden" id="leadid_tcpa_disclosure"/>
<label for="leadid_tcpa_disclosure">[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]</label>

Checkbox

<label>
  <input type="checkbox" id="leadid_tcpa_disclosure"/>[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]
</label>

OR

<input type="checkbox" id="leadid_tcpa_disclosure"/>
<label for="leadid_tcpa_disclosure">[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]</label>

Radio Buttons

<label>
  <input type="radio" id="leadid_tcpa_disclosure"/>[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]
</label>

OR

<input type="radio" id="leadid_tcpa_disclosure"/>
<label for="leadid_tcpa_disclosure">[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]</label>

Yes/No Menu

<label>[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]
  <select id="leadid_tcpa_disclosure">
    <option value="Any_Value_You_Want">Yes</option>
    <option value="Any_Value_You_Want">No</option>
  </select>
</label>

OR

<label for="leadid_tcpa_disclosure">[ENTER DESIRED OR SPECIFIED DISCLOSURE TEXT HERE]</label>
<select id="leadid_tcpa_disclosure">
  <option value="Any_Value_You_Want">Yes</option>
  <option value="Any_Value_You_Want">No</option>
</select>


Review your Script and TCPA Label Implementation

To review your implementation and confirm the disclosure is being captured, please reference this article.

Next step - Understanding Publisher Compliance

As a next step, you can check out our Publisher Compliance article for more information about how compliance is measured and the different data points/values that are returned to lead buyers through TCPA Guardian.


Was this article helpful?