Skip to content

Instantly share code, notes, and snippets.

View alexadam819's full-sized avatar

Alexander Adam alexadam819

View GitHub Profile
@alexadam819
alexadam819 / index.html
Created April 15, 2017 03:16
timeCalculator
<!DOCTYPE html>
<head>
<script language="JavaScript">
window.onload = function() {
var seconds = document.getElementById("secondsDD");
var minutes = document.getElementById("minutesDD");
var hours = document.getElementById("hoursDD");
for(var i = 0; i < 60; i++){
var optionNumberSeconds = document.createElement("option");