Created
June 5, 2017 02:23
-
-
Save eloyesp/f9be07d7b5d9db49df05d80dacbac934 to your computer and use it in GitHub Desktop.
Descarga Recibos de sueldo autogestion UNL
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
// Seleccciona todos los links con el onclick | |
// Y cambia el href a la direccion correcta | |
$('#dashboard a[onclick]').attr('href', function() { | |
idr = this.attributes['onclick'].value.match(/descargarRecibo\('(.*)'\)/)[1] | |
return 'downloadRecibo.php?idr=' +idr | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment