-
CSS classes based on page location
When styling SharePoint sites, it can be very useful to add specific styles to specific “pages” or views. Here’s a bit of jQuery/javascript code to make that possible. It works by grabbing the page location turning it into classes that are added to the body tag. jQuery(document).ready(function($){ //use a javascript variable to hold the results…
-
Nearly automatic breadcrumbs
Breadcrumbs Generates breadcrumb links based on the URL/path of the document (this code currently requires jQuery).
-
SVG: Where a good idea runs into the brick wall of browser implementation (or lack thereof)
Let’s say you want to create a nice, user friendly, device-agnostic, lightly interactive map. SVG immediately comes to mind as a good technology to use in such a case. Pretty good browser support now days and it doesn’t require plugins. For those who can’t use SVG, you can always provide fallback support as needed. Now…