From efc825fa1807c07b5776513114c8c184b31a1b04 Mon Sep 17 00:00:00 2001 From: noformnocontent Date: Sat, 29 Dec 2012 15:08:53 -0800 Subject: [PATCH] Updated Plugins (markdown) --- Plugins.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Plugins.md b/Plugins.md index 4418bc0..15d394e 100644 --- a/Plugins.md +++ b/Plugins.md @@ -78,14 +78,3 @@ ol li .message { font-size: 1.5em; } ``` - - -## Show the URIs instead of the names - -``` js -// show the URIs instead of the names -$('a.name, h1 a').each(function (i, e) { - e.title = e.innerHTML - e.innerHTML = '^' + e.href.replace(/^http(s)?:\/\//i,'').replace(/\/$/,'') -}) -```