Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created September 24, 2018 22:21
Show Gist options
  • Save ShuvoHabib/d737fb30aff868a4c8159eb5518b9772 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/d737fb30aff868a4c8159eb5518b9772 to your computer and use it in GitHub Desktop.
jQuery Plugin
$.fn.greenify = function() {
this.css( "color", "green" );
};
$( "a" ).greenify(); // Makes all the links green.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment