JSFiddle - React, Tailwind, and code Playground

by matthewbj

HTML

<style id="templateCSS">
        #box_shipto_header{
            background-color: black;
            color: white;
            padding:5px;
            }

</style>

<div id="box_shipto_header">some header text</div>


<div style="padding:10px;">Enter padding number to:
    <input type="text" id="padding"/></div>

JavaScript

$(function() {


    $('#padding').blur(function() {
        $("#box_shipto_header").css("padding", $(this).val() + "px");
    });


});