Created
January 25, 2017 06:56
-
-
Save nkgokul/f5a397a618eb35ca9f68c3178d54c28d to your computer and use it in GitHub Desktop.
Prepend Counters
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
var count=0; | |
jQuery("div.contentnavlinkbox1").each(function(i, item){ | |
jQuery(item).prepend(++count); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment