Skip to content

Instantly share code, notes, and snippets.

@cgiffard
Last active December 11, 2015 22:19
Show Gist options
  • Save cgiffard/4668995 to your computer and use it in GitHub Desktop.
Save cgiffard/4668995 to your computer and use it in GitHub Desktop.
Bookmarklet for making the LCA schedule toggle-able
javascript:(function(){[].slice.call(document.querySelectorAll("td"),0).forEach(function(item)%20{%20item.addEventListener("click",function()%20{%20console.log("clicked",item.state);item.state%20=%20!item.state;%20item.style.backgroundColor%20=%20["transparent","pink"][+item.state];%20})});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment