Skip to content

Instantly share code, notes, and snippets.

@nsuan
Created November 24, 2019 17:12
Show Gist options
  • Save nsuan/2505f513cc178ab3d7a23e103a756dfd to your computer and use it in GitHub Desktop.
Save nsuan/2505f513cc178ab3d7a23e103a756dfd to your computer and use it in GitHub Desktop.
Tell twitter you're not interested in anything
inputs = document.getElementsByName('interest_checkbox');
for (var i = 0; i < inputs.length; i++) {
inputs[i].checked = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment