Answered
window open
var _this = this;
_this.button.on('click', function(){
window.open('http://www.adobe.com', '_blank');
});
According to the above script, Adobe web page will be open on a new window.
How can I open the Adobe web page on the window itself, but on a new window?
Help me please!