JSFiddle - React, Tailwind, and code Playground

by ian_smithz

HTML

price : <span id="vatPrice">30,33</span><br>
vat : <span id="vatValue"></span>

JavaScript

$(document).ready(function () {
    $("#vatCalculate").ready(function () {
        var vatTextBox = $("#vatPrice").text();
        vatTextBox = parseFloat(vatTextBox.replace(/,/g, ''));
        var op = (vatTextBox * 100) / 122;
        var findVat = vatTextBox - op;
        $("#vatValue").text(findVat.toFixed(2));
    });
    });