Skip to content

Instantly share code, notes, and snippets.

@x
Created April 23, 2013 23:23
Show Gist options
  • Save x/5448287 to your computer and use it in GitHub Desktop.
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)
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