I finished a button click function that would alert with the time and date, it was working. I saved, closed notepad+, came back later and now when I click nothing, no error codes at the bottom, nothing, no response.
the button click is
Code:
onclick="ShowDate()"
the function is
Code:
function ShowDate() {
 var thetime = new Date();
 var weekday = thetime.getDay();
 var themonth = thetime.getMonth();
...