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 inputs = document.getElementsByTagName('input'); | |
| for (var i = 0; i < inputs.length; ++i) { | |
| if (inputs[i].type == "checkbox"){ | |
| inputs[i].checked = true; | |
| } | |
| } | |
| document.getElementById("remove-selected").disabled = false |
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
| /* | |
| Automatically click all "Verify your email" links in the welcome e-mail from | |
| Nintendo Pokémon Trainer Club's signup e-mails. | |
| All verified e-mails will be moved to trash unless you set "moveToTrash" to false. | |
| How to use: | |
| 1. Login to Gmail | |
| 2. Go to https://script.google.com/ | |
| 3. Enter the code, save, run. |
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
| <?php | |
| //SESSION MESSAGE SHOWN - [NEED: IN FUNCTION] | |
| if(isset($_SESSION['message'])) | |
| { | |
| //Shows the message. | |
| echo $_SESSION['message']; | |
| //Unset's the session after the message has been shown | |
| unset($_SESSION['message']); | |
| } | |