Virtual Business Card


A Jack of all trades is a master of integration, as such an individual who knows enough from many learned trades and skills to be able to bring their disciplines together in a practical manner, and is not a specialist but can be an expert in many fields. Such a person is known as a polymath or a renaissance man; a typical example is someone like Leonardo da Vinci.

Tuesday, October 11, 2011

JQuery to Open Links in a New Window

The code below is very useful when displaying a SharePoint page using a minimalistic masterpage in an IFrame of CRM 2011 dashboards. So instead of the page opening inside the IFrame of CRM 2011, it will open a new page. Add code in the script tag:

$(document).ready(function() {
$('a').attr('target', '_blank')
});

No comments:

Post a Comment