|
Hi, Within web player, the OpenUrl() is sadly lacking the option to define the Target so that we can open a new tab or a new page instead of replacing the content. Is there a way to do that straight or should I implement this via Application.ExternalCall and write a litle function in javascript? bye, Jean
(comments are locked)
|
|
There is no built-in support for this, so yes, you need to implement this using Application.ExternalCall. here is what I use then: Application.ExternalEval("window.open('http://your http://site.com','Window title')"); then you don't need any javascript function in your page for that, also setting the window title will prevent opening several time the same page if the user clicks several times.
Nov 02 '10 at 11:21 AM
Jean Fabre
Works great for me with ExternaEval :) thanks!
May 14 '11 at 05:23 PM
ruben_hiet
(comments are locked)
|
