// Live preview the contact's name

$(document).ready(function() {
  $('#qc8ebfeb1c713576d844a601c58bbea69').one('focus',function() {
    $('#regards').parent().after('<br /><span id="preview-box"><span id="live-preview"></span></span>');
  });
  var $comment = ''; // that's two single quotation-marks at the end
  $('#qc8ebfeb1c713576d844a601c58bbea69').keyup(function() {
    $comment = $(this).val();
    $comment = $comment.replace(/\n/g, "<br />").replace(/\n\n+/g, '<br /><br />').replace(/(<\/?)script/g,"$1noscript");
    $('#live-preview').html( $comment );
  });
});