JSFiddle - React, Tailwind, and code Playground

by inDiscover

HTML

<div id="toggleHeader">
    One View Information
</div>

<div id="toggleHeader">
    
</div>

JavaScript

jQuery(document).ready(function () {
    var objOneViewTr = jQuery("[id^='toggleHeader']");
    jQuery(objOneViewTr).each(function(index,value){
        alert(jQuery("[value='One View Information']").length);
if(jQuery("[value='One View Information']").length)
{
	jQuery(this).html('Safety Hazard Deficiency Areas');
}
    });
});