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 & \' \"")
name.replace("\"","\\\"").replace("'", "\'"). But still it generated as check & ' ". Do you have any idea? if so, please help.