How To Install Node.Js Using NVM

How To Install Using NVM An alternative to installing Node.js through apt is to use a specially designed tool called nvm, which stands for “Node.js version manager”. Using nvm, you can install multiple, self-contained versions of Node.js which will allow you to control your environment easier. It will give...

How to validate and disable (start & end) dates less than start date (datepicker)

In some case we want start date should be less than end date, and to disable renaming date HTML Script $(document).ready(function(){ $(“#txtFromDate”).datepicker({ numberOfMonths: 1, onSelect: function(selected) { $(“#txtToDate”).datepicker(“option”,”minDate”, selected) } }); $(“#txtToDate”).datepicker({ numberOfMonths: 1, onSelect: function(selected) { $(“#txtFromDate”).datepicker(“option”,”maxDate”, selected) } }); });