JSFiddle - React, Tailwind, and code Playground

by khushboo097

HTML

<button onclick="createDiv()">create div</button>
<div id="myDiv">
</div>

CSS

.styles {
margin: auto;
  height: 200px;
  width: 200px;
  background: red;
}

JavaScript

var createDiv = function() {
	console.log('here');
  let div = document.createElement('DIV')
  div.id = 'el';
  div.innerHTML = '<b>hey</b>';
  div.classList.add('styles');
  document.getElementById('myDiv').append(div);
  div.addEventListener('click', function() {
    alert('Look here');
  })
};