I already am doing a replace for the commas in an textbox. How would I replace if there is an "$" and a comma also in the same line?
function doValidate()
{
var valid = true;
document.likeItemSearchForm.sup.value = document.likeItemSearchForm.sup.value.replace(/\,/g,'');
return valid;
}