JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

HTML

<input type="text" id="bid" />

JavaScript

var highestBid = 214;
$('#bid').change(function() {
    if($(this).val() > highestBid) {
        alert('Only 0-214 allowed');
    } else { 
        alert('Bid placed...');
    }
});