Skip to content

Instantly share code, notes, and snippets.

@yashasvi9199
Created July 13, 2023 13:09
Show Gist options
  • Save yashasvi9199/8b40b0c435fcf7ba594e71d46812eee7 to your computer and use it in GitHub Desktop.
Save yashasvi9199/8b40b0c435fcf7ba594e71d46812eee7 to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
</head>
<body>
<h3>Enter minutes</h3>
<input type="number" id="hell" />
<script>
$("#hell").change(function() {
var minute = $("#hell").val();
var seconds = minute * 60;
alert(seconds);
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment