JSFiddle - React, Tailwind, and code Playground

by jeremyblalock

HTML

<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<div class="custom_title" contenteditable="true" maxlength="50">
   WRITE YOUR CUSTOM TITLE HERE
</div>

<button id="search_wiki">
Search
</button>

JavaScript

var termS;

function myGoogle() {
	termS = $(".custom_title").html();
  console.log(termS);
}

$("#search_wiki").on("click", function() {
  myGoogle();
});