Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var dateString = document.forms['formName'].elements['fieldName'].value;
var theDate = new Date(dateString);
var theMonth = theDate.getMonth();
var theDay = theDate.getDate();
var theYear = theDate.getFullYear();