There is a default placeholder included on any Phone-based text field placed on a form. I'm wondering if anyone knows how to change or remove it.
Thanks in advance.

There is a default placeholder included on any Phone-based text field placed on a form. I'm wondering if anyone knows how to change or remove it.
Thanks in advance.
Got it.
At the bottom of Additional Settings on the Form in Portal Management, add the following code into the Custom JavaScript section:
$( document ).ready(function() {
$('#your_control_id').removeAttr('placeholder');
});