JSFiddle - React, Tailwind, and code Playground

by Dmitry Kostenko

HTML

<bootstrap_button></bootstrap_button>
<bootstrap_button>dfg !2 234</bootstrap_button>
<bootstrap_button></bootstrap_button>
<bootstrap_button></bootstrap_button>
<bootstrap_button></bootstrap_button>

JavaScript

function init() {
        var elements = document.getElementsByTagName('bootstrap_button');
        var length =  elements.length;
  
        for(var i=0; i<length; i++) {
        
        		var newTag = document.createElement('button');
            
            newTag.className = "btn btn-default";
            newTag.setAttribute('type', 'Submit');
            newTag.innerHTML = 'Some text';
            
            elements[0].parentNode.replaceChild(newTag, elements[0]);
        }
    }
    
 init();