I am using a dynamic Navigation menu (APEX 5 Universal theme). It works very well and I can open all my application pages etc. The Navigation Menu uses a function returning SQL to build the menu list.
The menu uses f?p='||v('APP_ID')||':' || MYPAGE || ':'||v('APP_SESSION') target to open the Apex application specific page - All Good no issues,
For non APEX application pages the SQL returns the actual URL http://www.google.com. This does work, but it opens the page in the same browser window as the APEX application. I need it to open in the same way as target="_BLANK" would.
I have tried using javascript:window.open("http://www.google.com") as the URL, but that doesn't work.
Is there a way to do this ?