In SharePoint 2010, there was a wonderful option called “Sign in as Different User” that would allow you to quickly, easily and painlessly switch user accounts in the browser without losing your place on a site. This worked wonderfully for developers and for Admins where they have multiple IDs. However, it confused the average user and Click to read the full post
Tag Archives: javascript
The SharePoint Content Editor and the Infinite JavaScript Problem
One of the nice things about the SharePoint Content Editor Web Part is that it lets you easily include your own html and javascript without having to modify the page structure itself and that works really well for most things. However, many third-party and hosted utilities require you to embed a script in your content that looks something like this :
<script type="text/javascript" charset="utf-8" src="http://external.url.com/SomeID/TheirApp.js"></script> <noscript><a href="http://external.url.com/SomeID/">Click here to do something wonderful</a></noscript>
Simple enough and anyone can paste that in. The catch comes when the javascript file that you are including writes its own HTML into your page. Click to read the full post