JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<div id="n1"> </div>
<div id="n2"> </div>
<div id="n3"> </div>
<div id="n4"> </div>
<div id="n5"> </div>
JavaScript
function ivideos() {
$('#n1').html('hello');
$('#n2').html('hello');
$('#n3').html('hello');
$('#n4').html('hello');
$('#n5').html('hello');
}
ivideos();
alert("alert called");