up vote 3 down vote favorite
1
share [g+] share [fb]

Any ideas on how to make a link in a link webpart open in a new window? Thanks in Advance

link|improve this question

24% accept rate
feedback

3 Answers

I assume you mean you have a list web part and it contains Link content type. You wish the Link content type to open in a new window. My only suggestion is that you use a custom XSLT for your List WebPart and render the xhtml link tag with a target attribute.

link|improve this answer
feedback

I'd go with jQuery. Get all links in the webpart and add the target attribute:

$(document).ready(function(){
  // selector: get all links in the link webpart, check for unique (parent) class
  $('selector').attr('target', '_blank');
});
link|improve this answer
feedback

This blog post has the answer. I tried it out yesterday, and it works: Open Links List Links in New Window in SharePoint 2010

It does cause all of the links in the list to open in new windows, not just one, so hopefully that is the desired behavior.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.