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(/\/$/,'') -}) -```