Skip to content

Instantly share code, notes, and snippets.

@inbn
inbn / scheduleevents.html
Last active January 28, 2016 19:46
Schedule an event at a specific time of the day in JavaScript based on date and time input
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Schedule event at specific time</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.1/moment.min.js"></script>
</head>
<body>
<label for="date">Date</label>
<input type="date" id="date" />