Skip to content

Instantly share code, notes, and snippets.

@brittanmcg
Created July 25, 2019 20:52
Show Gist options
  • Select an option

  • Save brittanmcg/3a16ac3dbd9e0b92e552493b8c4707f0 to your computer and use it in GitHub Desktop.

Select an option

Save brittanmcg/3a16ac3dbd9e0b92e552493b8c4707f0 to your computer and use it in GitHub Desktop.
var startDateObject = new Date();
var startTime = startDateObject.getTime();
window.onbeforeunload = function (event) {
var endDateObject = new Date();
var endTime = endDateObject.getTime();
var timeSpent = endTime - startTime;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment