Created
April 23, 2013 23:23
-
-
Save x/5448287 to your computer and use it in GitHub Desktop.
Bookmarklet to check the number of credits you have from Rutgers Degree Navigator because there's no damn total on this site (https://dn.rutgers.edu/Default.aspx?pageid=transcript)
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
javascript:(function(){var jq = document.createElement('script');jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js";document.getElementsByTagName('head')[0].appendChild(jq); setTimeout(function(){jQuery.noConflict(); var i=0; jQuery(".DeAcDataGridItemB td:nth-child(3)").each(function(){i += parseInt(jQuery(this).html())}); alert("Your total credit count is " + i);})})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment