Skip to content

Instantly share code, notes, and snippets.

@emanueljtc
Created May 17, 2019 17:52
Show Gist options
  • Save emanueljtc/490b06ea18aa5a40118c5b8da7b4cd00 to your computer and use it in GitHub Desktop.
Save emanueljtc/490b06ea18aa5a40118c5b8da7b4cd00 to your computer and use it in GitHub Desktop.
var asd = document.querySelectorAll('span.MaterialContent-duration')
window.counter = 0;
asd.forEach(function(el){
var strel = el.innerHTML.split(':')[0];
if(strel.length > 0){
window.counter += parseInt(strel, 10)
} else {
return
}
});
console.log('Este Curso te tomara: ', window.counter / 60)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment