+var comment_box_cursor_position = 0;\r
+function canned_comment(post_id, comment) {\r
+ textarea = $('#comment-' + post_id + '-form textarea')\r
+\r
+ // Get the text from the beginning to the caret\r
+ textarea_start = textarea.val().substr(0, comment_box_cursor_position)\r
+\r
+ // Get the text from the caret to the end\r
+ textarea_end = textarea.val().substr(comment_box_cursor_position, textarea.val().length)\r
+\r
+ textarea.val(textarea_start + comment + textarea_end);\r
+}\r
+\r