Hi,
anyone plz suggest me how to open a cloud link(url) in seperate tab using jquery.
I have done below code , using the below code it downloads but not open a new tab..
{{ data.documentname }}
vm.download = function (documentid, url) {
var win = window.open(url, '_blank');
win.focus();
}