Quote:
Originally Posted by Igel1
But as empty lines are inserted
better that way
Code:
function insertCannedReply(text)
{
text = text.replace(/\\"/ig, "\"");
text = text.replace(/ \<br\>/ig, "");
if (document.getElementById("vB_Editor_001"))
{
CKEDITOR.instances.vB_Editor_001_editor.insertHtml(text);
}
else
{
CKEDITOR.instances.vB_Editor_QR_editor.insertHtml(text);
}
}
So BB code also works without <br>
|
This worked for me, thanks.