Forum Moderators: open
For anyone else who stumbles on this ticket:
getURL() to execute a javascript function will work - it's no longer officially supported though because these days everything is done through ExternalInterface. So you'd do:
ExternalInterface.call("changeMyDropDownMenu","scotland");
where "changeMyDropDownMenu" is the function and "scotland" is the argument.
That said, getURL should still work, you can do
getURL("javascript:changMyDropDownMenu('scotland'));