diff --git a/js/expand.js b/js/expand.js
index ade18be3..8727ea91 100644
--- a/js/expand.js
+++ b/js/expand.js
@@ -35,7 +35,8 @@ $(document).ready(function() {
if (lastExpanded) {
$(this).addClass('expanded').insertAfter(lastExpanded).before('
');
} else {
- $(this).addClass('expanded').insertAfter(thread.find('div.post:first')).after('
');
+ let opBr = thread.find('div.post').first().next();
+ $(this).addClass('expanded').insertAfter(opBr).after('
');
}
lastExpanded = $(this);
$(document).trigger('new_post', this);