Currently, I am replacing commas in a textbox. However, how do I go about replacing both a "$" and a comma if they appear together in the same line?
function doValidate()
{
var valid = true;
document.likeItemSearchForm.sup.value = document.likeItemSearchForm.sup.value.replace(/\,/g,'');
return valid;
}