Created
September 24, 2018 22:21
-
-
Save ShuvoHabib/d737fb30aff868a4c8159eb5518b9772 to your computer and use it in GitHub Desktop.
jQuery Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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