Skip to content

Instantly share code, notes, and snippets.

@overstrides
Created August 8, 2016 11:43
Show Gist options
  • Select an option

  • Save overstrides/198c97ce6582fb82b61767ff4248ed2d to your computer and use it in GitHub Desktop.

Select an option

Save overstrides/198c97ce6582fb82b61767ff4248ed2d to your computer and use it in GitHub Desktop.
find table and add a class via js
window.onload = function(){
var tab = document.getElementsByTagName('table');
tab[0].className = 'table table-hover';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment