JSFiddle - React, Tailwind, and code Playground

by mohammadAdil

HTML

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js"></script>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/redmond/jquery-ui.css" rel="stylesheet" />

<input type="text" id="booksale_start_date_view" >

JavaScript

var min_next_date = 149802000000;

$(document).ready(function() {
    $('#booksale_start_date_view').datepicker({changeMonth: true, numberOfMonths: 1, minDate: min_next_date});
    
});