Skip to content

Instantly share code, notes, and snippets.

@kampar
Created February 15, 2024 20:22
Show Gist options
  • Save kampar/3c7608ae62667a835bc3cec46430a5cd to your computer and use it in GitHub Desktop.
Save kampar/3c7608ae62667a835bc3cec46430a5cd to your computer and use it in GitHub Desktop.
console untuk buka semua KRS mahasiswa, enable dulu popup ya ...
const buttonsWithAttribute = document.querySelectorAll('button[data-title="BELUM ACC"]');
buttonsWithAttribute.forEach(button => {
const href = button.getAttribute('href');
window.open(href,'_blank'); // Logs the href attribute value for each button
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment