🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

The Copyright jQuery plugin allows you to add a reference to the source in buffer when copying.

Plugins Web

Documentation

Copyright

ABOUT

A jQuery plugin to automatically append reference and copyright text to any content the user is copy & pasting away from your site.

Browser Support

Plugin is supported in Internet Explorer 7+, Firefox 3.5+, Opera 10.5+, Chrome 4.0+, and Safari 4.0+.

USAGE

The Copyright plugin uses the jQuery JavaScript library (>=1.7), only. So, include just these two javascript files in your header.

<script src="js/jquery.js"></script> <script src="js/jquery.copyright.js"></script> 

Call the jQuery Copyright plugin. You can select a specific selector or the document.

$(document).copyright();

Options:

You can pass an options object in plugin init method.

  • text : The text that will be added when copying (Default: "<br>Original: " + window.location.href);
  • minlength : The minimum length of the copied text when running the plugin (Default: 0).
  • processing : Function to process the copied text (Default: undefined).
$(document).copyright({ 	text: "<br>Reference: " + window.location.href, 	minlength: 100, 	processing: function(text) { 		return "Text \"" + text + "\" copied."; 	} }); 

Methods:

You can call some methods. Just pass their name.

  • remove : Stop the plugin.
$(document).copyright('remove');

Events:

You can listen Copyright events.

  • copyright_BeforeCopy
  • copyright_AfterCopy

EXAMPLE

View example


You May Also Like