Files
oav/dotclear._no/themes/qrazy-times/js/jquery.livepreview.js
2023-03-20 12:18:38 +01:00

12 lines
379 B
JavaScript
Executable File

// Live Comment Preview jQuery function
$(function() {
$('#c_content').one('focus',function() {
});
var $c_content = '';
$('#c_content').keyup(function() {
$c_content = $(this).val();
$c_content = $c_content.replace(/\n/g, "<br />").replace(/\n\n+/g, '<br /><br />').replace(/(<\/?)script/g,"$1noscript");
$('p.live-preview').html($c_content);
});
});