function replaceAll(strChk, strFind, strReplace) {
var strOut = strChk;
while (strOut.indexOf(strFind) > -1) {
strOut = strOut.replace(strFind, strReplace);
}
return strOut;
}
function replaceAll(strChk, strFind, strReplace) {
var strOut = strChk;
while (strOut.indexOf(strFind) > -1) {
strOut = strOut.replace(strFind, strReplace);
}
return strOut;
}
Post a Comment
You must be logged in to post a comment.