views:

389

answers:

1

When using custom actions in SharePoint (for the Site Actions menu) how can I make it so that the links will open up in a new window?

I have tried an approach using jQuery that would attach a hover event via .live() to replace the window.location with a window.open call -- however this proved to be troublesome as it refused to work in IE6 (which a large portion of our users are still using...).

+2  A: 

Its is not possible out of box. But it can be done using little hack. Refer to these links

MSDN Question

Blog Post

Kusek
thanks a lot, that did it!
Steve Ruiz