Page 1 of 1

Open in new tab: Links in related lists

Posted: 11 Sep 2018
by dominique.beaudin
Hello,
I am using a Promoted items list as a related list in a form. Is there a way to get the link to open in a new tab (in the browser)? I have selected this option on the list, but it does not seem to work.

Suggestions are welcome.

Re: Open in new tab: Links in related lists

Posted: 12 Sep 2018
by AlexZver
Hi!

It's a common problem in Sharepoint 2013: http://johnliu.net/blog/2015/8/fixing-s ... -behaviour
To fix this problem simply add this code to your JavaScript Editor:

Code: Select all

$( ".ms-vb2 a" ).each(function(index) {
    $(this).on("click", function(event){
        event.preventDefault();
	window.open($(this).attr('href'), '_blank');
    });
});