Last active
August 29, 2015 14:23
-
-
Save Villanuevand/7f038574666b56ff8dc3 to your computer and use it in GitHub Desktop.
Obtener toda la información del listado de bancos en https://www.asobanca.com.ve/site/home.php
This file contains 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
/** | |
* Instrucciones de USO. | |
* - Ir a https://www.asobanca.com.ve/site/home.php. | |
* - Presionar F12 para abrir DevTools. | |
* - Abrir consola y pegar este script! | |
* - Presionar ENTER. | |
* - copiar resultado y utilizar para cosas geniales! | |
*/ | |
var c = document.getElementsByClassName('awMenuComiteesLink'), | |
arr = []; | |
for(var i = 0; i< c[0].childNodes.length; i++) | |
{ | |
if(i % 2 == 1){ | |
arr.push(c[0].childNodes[i].innerText); | |
} | |
} | |
// Eliminando primer item: "listado de bancos". | |
arr.shift(); | |
console.log(arr); | |
/* | |
* Resultado | |
* ["100% Banco", "Arrendadora Financiera Empresarial, C.A. ANFICO", | |
* "Bancamiga Banco Microfinanciero, C.A.", "BanCaribe", "Banco Activo", | |
* "Banco Agrícola de Venezuela", "Banco Caroní", "Banco de Comercio Exterior", | |
* "Banco de Venezuela", "Banco del Tesoro", "Banco Exterior", | |
* "Banco Internacional de desarrollo C.A.", "Banco Mercantil", | |
* "Banco Nacional de Crédito", "Banco Nacional de Vivienda y el Hábitat", | |
* "Banco Occidental de Descuento", "Banco Plaza", "Banco Sofitasa", | |
* "Bancrecer SA", "Banesco", "Bangente", "Banplus", "BBVA Banco Provincial", | |
* "BFC Banco Fondo Común", "Citibank", "Del Sur", "Instituto Municipal de Crédito Popular", | |
* "Mi Banco", "Novo Banco", "Sofioccidente Banco de Inversión"] | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment