I have a link which has navigateToBusiness("check & ' "")
. Due to this double quote, script is not getting called. The value passed check & ' "
is dynamic.
Please help. Thanks in advance.
I have a link which has navigateToBusiness("check & ' "")
. Due to this double quote, script is not getting called. The value passed check & ' "
is dynamic.
Please help. Thanks in advance.
You can escape special characters with a leading \
navigateToBusiness("check & \' \"")