Skip to content

Instantly share code, notes, and snippets.

@gastongouron
Forked from marwan-nwh/last-style.js
Created December 11, 2015 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gastongouron/2342cd57321fcd29dbd4 to your computer and use it in GitHub Desktop.
Save gastongouron/2342cd57321fcd29dbd4 to your computer and use it in GitHub Desktop.
get the last element on the dom by class and apply style to it
<script type="text/javascript">
c=document.getElementsByClassName("comment-inner");
last_element = c[c.length - 1];
last_element.style.borderBottomWidth="0";
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment