jquery.clcp
v1.0.0
Published
jQuery Plugin to Clear Links to Current Page
Downloads
4
Readme
Clear Links to Current Page
jQuery plugin that would automatically strip any link that was pointing to the current page. This is jQuery port of code by Jonathan Snook.
Getting Started
Download the production version or the development version.
In your web page:
<script src="jquery.js"></script>
<script src="dist/jquery.clcp.min.js"></script>
<script>
jQuery(function($) {
$('a').clcp();
});
</script>