|
|
@@ -1477,10 +1477,10 @@ if (mainTvLength < 2) {
|
|
|
|
|
|
// 스크립트 제거
|
|
|
function fnRemoveHTML(text){
|
|
|
- text = text.replace(/(<br>|<br\/>|<br \/>)/g, "\n");
|
|
|
- text = text.replace(/<(\/)?([a-zA-Z]*)(\s[a-zA-Z]*=[^>]*)?(\s)*(\/)?>/ig, "");
|
|
|
- text = text.replace(/(?:\r\n|\r|\n)/g, '<br/>');
|
|
|
- return text;
|
|
|
+ var reText = text.replace(/(<br>|<br\/>|<br \/>)/g, "\n");
|
|
|
+ reText = reText.replace(/<(\/)?([a-zA-Z]*)(\s[a-zA-Z]*=[^>]*)?(\s)*(\/)?>/ig, "");
|
|
|
+ reText = reText.replace(/(?:\r\n|\r|\n)/g, '<br/>');
|
|
|
+ return reText;
|
|
|
}
|
|
|
|
|
|
$(document).ready(function() {
|