JSFiddle - React, Tailwind, and code Playground

HTML

<p class="paste-alert"></p>
<input> </input>

JavaScript

$('input').on('paste', function () {
  var element = this;
  setTimeout(function () {
    $(".paste-alert").append("<b>Copy and paste detected:</b> Please take time to write a unique description for your listing. This will ensure your advert will get found in the search engines and help keep Rate Local a high authority, free directory. ");
  }, 100);
});