הפתרון למי שרוצהאם יניב יש לך פתרון יותר קל אתה יותר ממוזמן להגיד לי
function change_text_style(text_style,msg) { var msg = document.getElementById(msg); var str = msg.value; if (text_style == "bold") { if (str.indexOf("מודגשש") == -1) { msg.value += "מודגשש"; } else if(str.indexOf("מודגשש") == 0) { msg.value = str.replace(/מודגשש/g,""); } } }
|