Skip to content

Instantly share code, notes, and snippets.

@jmacego
Created March 14, 2019 17:25
Show Gist options
  • Save jmacego/dd169376e646431ea2b20eae64de1cba to your computer and use it in GitHub Desktop.
Save jmacego/dd169376e646431ea2b20eae64de1cba to your computer and use it in GitHub Desktop.
Bookmarklet to widen the comment field on Meraki Switch ACLs and Firewall policies
javascript:(function(){var inputs = document.getElementsByTagName("input");for(var i = 0; i < inputs.length; i++) {if(inputs[i].name.match(/comment/) || inputs[i].className.match(/comment/) ) {inputs[i].size = 100;}}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment