diff --git a/app/views/blogs/_blog.html.haml b/app/views/blogs/_blog.html.haml
index 366f5ad85..e0f63e52d 100644
--- a/app/views/blogs/_blog.html.haml
+++ b/app/views/blogs/_blog.html.haml
@@ -1,4 +1,4 @@
-%li.message{:class => ("mine" if mine?(post))}
+%li.message{:id => post.id, :class => ("mine" if mine?(post))}
%span.from
= link_to_person post.person
%b wrote a new blog post
diff --git a/app/views/bookmarks/_bookmark.html.haml b/app/views/bookmarks/_bookmark.html.haml
index 03fd47c0f..88208a619 100644
--- a/app/views/bookmarks/_bookmark.html.haml
+++ b/app/views/bookmarks/_bookmark.html.haml
@@ -1,4 +1,4 @@
-%li.message{:class => ("mine" if mine?(post))}
+%li.message{:id => post.id, :class => ("mine" if mine?(post))}
%span.from
= link_to_person post.person
%b shared a link
diff --git a/app/views/comments/_comment.html.haml b/app/views/comments/_comment.html.haml
index 9914fcb7a..4591333df 100644
--- a/app/views/comments/_comment.html.haml
+++ b/app/views/comments/_comment.html.haml
@@ -1,4 +1,4 @@
-%li.comment
+%li.comment{:id => comment.id}
= comment.text
\---
- = comment.person.real_name
\ No newline at end of file
+ = comment.person.real_name
diff --git a/app/views/status_messages/_status_message.html.haml b/app/views/status_messages/_status_message.html.haml
index d1c6611c1..a0dc4336b 100644
--- a/app/views/status_messages/_status_message.html.haml
+++ b/app/views/status_messages/_status_message.html.haml
@@ -1,4 +1,4 @@
-%li.message{:class => ("mine" if mine?(post))}
+%li.message{:id => post.id, :class => ("mine" if mine?(post))}
%span.from
= link_to_person post.person
= post.message