How do I disable a submit button in JavaScript after the deadline.
Please I need to submit a button to be taken away after the deadline or return an alert that the deadline is gone.
Thanks
<body>
<h2>Welcome! </h2>
<p>Please find below your responsibilities for the month</p>
<div class=t ask> Task 1 </div>
<p>Please Submit your report in the space below</p>
<h3 style="color: red"> DEADLINE: 20/04/2020</h3>
<form>
<textarea>
</textarea> <br> <br>
<button>Submit</button>
</form>
</body>
You can use a
windows.setTimeout
call to trigger an event to hide the submit button. To compute the number of milliseconds into the future this event should happen, you create aDate
object with the date4/20/2020
and a secondDate
object with the current date. You then callgetTime()
on both of these objects. This functions is defined as:The difference between the two values is the number of milliseconds into the future
4/20/2020 12:00:00 AM
occurs and should be the argument for the call towindow.setTimeout
. For the following demo, after this calculation is done, the computed value is overridden with 10,000 ms. for demo purposes:The comment posted by developer should be taken seriously. You should also have a check on the server side to check whether the form was submitted on or after
4/20/2020 12:00:00 AM
using the appropriate time zone. On the client side, we were using the local time zone but the number of milliseconds difference between two dates should be somewhat time zone independent, although there could be small differences.If you want to be precise in calculating the number of milliseconds to expiration, you can use:
Of course you would use whatever timezone is appropriate for your application. Note that after assigning
deadline = new Date(2020, 4, 20).toLocaleString("en-US", {timeZone: "America/New_York"});
you end up with aDate
object that has nogetTime
function and hence the need to construct a newDate
object from that.