diff --git src/wp-admin/includes/class-wp-comments-list-table.php src/wp-admin/includes/class-wp-comments-list-table.php
index 08b709b..02dd49a 100644
--- src/wp-admin/includes/class-wp-comments-list-table.php
+++ src/wp-admin/includes/class-wp-comments-list-table.php
@@ -459,9 +459,15 @@ class WP_Comments_List_Table extends WP_List_Table {
 			}
 
 			if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
+				
+				// Add "Edit" link to comment
 				$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__( 'Edit comment' ) . "'>". __( 'Edit' ) . '</a>';
-				$actions['quickedit'] = '<a onclick="window.commentReply && commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\' );return false;" class="vim-q" title="'.esc_attr__( 'Quick Edit' ).'" href="#">' . __( 'Quick&nbsp;Edit' ) . '</a>';
-				$actions['reply'] = '<a onclick="window.commentReply && commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\' );return false;" class="vim-r" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
+				
+				// Add "Quick Edit" link to comment
+				$actions['quickedit'] = '<a data-post-id="'.$post->ID.'" data-comment-id="'.$comment->comment_ID.'" class="vim-q edit-comment-inline" title="'.esc_attr__( 'Quick Edit' ).'" href="#">' . __( 'Quick Edit' ) . '</a>';
+				
+				// Add "Reply" link to comment
+				$actions['reply'] = '<a data-comment-id="'.$comment->comment_ID.'" data-post-id="'.$post->ID.'" class="vim-r reply-comment-inline" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
 			}
 
 			/** This filter is documented in wp-admin/includes/dashboard.php */
diff --git src/wp-admin/js/edit-comments.js src/wp-admin/js/edit-comments.js
index ff149e1..eb6bc58 100644
--- src/wp-admin/js/edit-comments.js
+++ src/wp-admin/js/edit-comments.js
@@ -607,6 +607,47 @@ $(document).ready(function(){
 			}
 		);
 	}
+	
+	if ( typeof commentReply != 'undefined' ) {
+		
+		// Each "Quick Edit" link, open the comment editor
+		$( 'body' ).on( 
+			'click', 
+			'.comment .row-actions .quickedit .edit-comment-inline', 
+				function (e) {
+					e.preventDefault();
+
+					var element = 		jQuery( e.currentTarget );
+					var post_id = 		element.data('post-id');
+					var comment_id = 	element.data('comment-id');
+
+					commentReply.open(
+						comment_id,
+						post_id,
+						'edit'
+					);
+				}  
+		);
+
+		// Each "Reply" link, open the comment reply
+		$( 'body' ).on( 
+			'click', 
+			'.comment .row-actions .reply .reply-comment-inline', 
+				function (e) {
+					e.preventDefault();
+
+					var element = 		jQuery( e.currentTarget );
+					var post_id = 		element.data('post-id');
+					var comment_id = 	element.data('comment-id');
+
+					commentReply.open(
+						comment_id,
+						post_id
+						// default is 'reply'
+					);
+				}  
+		);
+	}
 });
 
 })(jQuery);
