Hi guys,
If it is possible to change appearance or text on submit button, just overriding , it is possible to change/add new functions on submiting ? I would like to simply add field formatting for lead mobile phone.
I used following syntax:
if (fld.name == 'MobilePhone' ) {
if (fld.value.substr(0,1)== "+") {fld.value=fld.value.replace("+","");}
if (fld.value.substr(0,2)=="00") {fld.value=fld.value.replace("00","");}
}
(or the same with substr function)
And it seems not working. What else should I probably change in
/js/mktFormSupport.js
Thank you!