Skip to content

Instantly share code, notes, and snippets.

@spdustin
Created October 16, 2012 18:03
Show Gist options
  • Save spdustin/3900926 to your computer and use it in GitHub Desktop.
Save spdustin/3900926 to your computer and use it in GitHub Desktop.
Decorate SharePoint Web Part containers with Web Part Title as a class
$(".ms-WPHeaderTd").each(
function() {
var webPartClass = "wptitle-" + $(this).attr("title").replace(/[^a-z]/ig,'').toLowerCase();
console.log(webPartClass);
$(this).closest(".s4-wpcell").addClass(webPartClass);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment