Runs JavaScript code that is the result of an SQL query.
This component is always run in the hidden frame but the JavaScript code executes in the frame of the previous visible menu item.
When using user-entered data as part of the JavaScript you are in danger of JavaScript injection.
To avoid injection risks you can use the parameter columns to pass values to your script.
SELECT
'thirdPartyApi.showMap(street, city, country)' AS JavaScript,
StreetAddress AS street,
CityName AS city,
CountryName AS country
FROM
...