JSFiddle - React, Tailwind, and code Playground

by vijayweb

HTML

<script src="http://www.darlesson.com/plugins/OuterHTML/source/outerHTML-2.1.0-min.js"></script>
<div class="parent"><div>I am DIV one</div>
    <div>I am DIV two</div>
    <div>I am DIV three</div>
    
    <button id="whoAreYou">Who are you?</button>

<textarea id="code"></textarea>
</div>

JavaScript

$(".parent").children().mouseover(function(){
       $("#code").html($(this).outerHTML()); 

    });