Skip to content

Instantly share code, notes, and snippets.

@marawannwh
marawannwh / last-style.js
Created October 26, 2012 15:24
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>