/*Credit goes to Rockatee Blog at http://www.rockatee.com/blog/creating-a-simple-comment-live-preview-to-use-with-expressionengine/
See Instructions at http://www.erummunir.com/118/adding-live-preview-for-comments
*/
$(function() {
  $('#comment').one('focus',function() {
});
  var $comment = ''; 
  $('#comment').keyup(function() {
      $comment = $(this).val();
      $comment = $comment.replace(/\n/g, "<br />").replace(/\n\n+/g, '<br /><br />').replace(/(<\/?)script/g,"$1noscript");
      $('p.live-preview').html($comment);
  });
});
