Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dantetesta/f3e0fa526f80a5bd21091935c1814bb1 to your computer and use it in GitHub Desktop.
Save dantetesta/f3e0fa526f80a5bd21091935c1814bb1 to your computer and use it in GitHub Desktop.
/*BY: ASK JARVIS + DANTE TESTA */
<script>
window.onload = function() {
var idpost = parseInt(document.getElementById('idpost').textContent);
var eventos = document.getElementById('eventos');
var eventoencontrado = eventos.querySelector('option[value="' + idpost + '"]');
eventos.innerHTML = '';
eventos.appendChild(eventoencontrado);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment