JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="txtFromDate" />
JavaScript
var count = 10;
//Add the 2 days of weekend in numer of days .
var d = new Date();
count = count + (parseInt(count/5))*2;
d.setDate(d.getDate() +count);
//suppose its ending on weekend day then increment them manually.
if(d.getDay() == 6 ) d.setDate(d.getDate() + 2);
if(d.getDay() == 7) d.setDate(d.getDate() + 1);
$(document).ready(function () {
$("#txtFromDate").datepicker(
{ minDate: d,
beforeShowDay: $.datepicker.noWeekends,
changeMonth: true,
changeYear: true});
});