Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Kenneth Cho on Jan 09, 2009 02:18
open dhtmlx forum
dhtmlx Menu add the hyperlink to open new ie

Hi,

When I click the menu ,

Such as "File ->open", it can link to yahoo.com.

thanks
Answer posted by Support on Jan 09, 2009 02:31
Hello,

You should add "onClick" event and then use something like:
document.location.href = "http://yahoo.com";
Answer posted by Support on Jan 09, 2009 03:05
To open url in a new window you should create a form element "on the fly",
set target to "blank", action to "http://...", and then sumbit it.