Before adding the phone number to your URL, replace the plus signs with blanks. Something like this:
let phoneStr = "0411+111+111"
phoneStr = phoneStr.replace(/\+/g, "");
Do a web search for other possibilities and variations.
Before adding the phone number to your URL, replace the plus signs with blanks. Something like this:
let phoneStr = "0411+111+111"
phoneStr = phoneStr.replace(/\+/g, "");
Do a web search for other possibilities and variations.