Skip to content

Instantly share code, notes, and snippets.

@ntkog
Created December 19, 2018 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ntkog/bd8eef32707a54a5cdec55a15c1a7f9e to your computer and use it in GitHub Desktop.
Save ntkog/bd8eef32707a54a5cdec55a15c1a7f9e to your computer and use it in GitHub Desktop.
Resalte de los conceptos a 0 de los presupuestos del distrito de Vallecas 2017
// Carga esta url
// https://presupuestosabiertos.madrid.es/es/inversiones/213/puente-de-vallecas#year=2017
// Expande todos los conceptos
[...document.querySelectorAll('tr > td >a.toggle')].map( el => el.click() )
// Resalta en amarillo todos los conceptos cuya ejecución presupuestaria es 0
[...document.querySelectorAll('td:nth-child(3)')].filter(el => el.textContent === "0 €").map( el => el.style.backgroundColor = "yellow" )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment