Tooltip(true,escape('Benito's Taco Shop'),event)
JavaScript
2
Posts
2
Posters
1
Views
1
Watching
-
When Call this function like using escape it should throw the error like 'missing ) after argument list' How should eliminate this problem...anybody having ideas... Thanks in advance
You have to escape the
'
in a string literal with a\
Tooltip(true,escape('Benito\'s Taco Shop'),event)
or you could wrap the string in double-quotes instead:
Tooltip(true,escape("Benito's Taco Shop"),event)