Skip to content

Instantly share code, notes, and snippets.

@dgershman
Created August 5, 2018 18:18
Show Gist options
  • Save dgershman/6860f98d0675599231c59030109cfed6 to your computer and use it in GitHub Desktop.
Save dgershman/6860f98d0675599231c59030109cfed6 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(function() {
var posts = $("[id^=post_row_]")
if (posts.length > 0) {
var separator = "<tr><td><div class=\"bx-def-hr bx-def-margin-sec-top bx-def-margin-sec-bottom\"></div></td></tr>";
$(".forum_posts").html("")
for (var x = posts.length - 1; x >= 0; x--) {
$(".forum_posts").append(separator)
$(".forum_posts").append(posts[x].outerHTML + "<hr/>");
}
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment