JSFiddle - React, Tailwind, and code Playground

by jquerybyexample

HTML

<p>jQuery Rocks!!!!!<br/><br/></p>
<p>jquery is future!!!<br/><br/></p>
<p>jQuery is most popular client side langugage!!!<br/><br/></p>
<p>jquery is replacement of JavaScript!!!<br/><br/></p>
<input type="button" id="btnHide" value=" Hide "/>
<input type="button" id="btnReset" value=" Reset "/>

CSS

body
{
    padding: 15px;
    font-size:12pt;
    font-family:Calibri;
}

JavaScript

$(document).ready(function() {
    $('#btnHide').click(function() {
        $("p:contains('jquery')").hide();
    });
    $('#btnReset').click(function() {
        $("p:contains('jquery')").show();
    });
});