Intento rescatar de una pagina web el nombre de la persona. Tengo hecho una función en javascript que me retorna el html, pero me da un error porque viene con la etiqueta doctype.
Que puedo hacer para eliminar las lineas que me dan error y poder extraer el dato que necesito.
A continuacion el codigo que tengo
Código Javascript:
Ver original
$.ajax({ url: "https://zeus.sii.cl/cvc_cgi/stc/getstc?RUT=1&DV=9&PRG=STC", dataType: "script", success: function(data, textStatus, jqxhr) { var pagina = data; //data returned console.log(textStatus); //success console.log(jqxhr.status); //200 console.log('Load was performed.'); } });
El html de la pagina que me retorna
Código HTML:
Necesito sacar este nombre EDUARDO GONZALEZ MENDEZ que varia segun los parámetros que le pase. Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script type="text/javascript" src="https://zeus.sii.cl/admin/barranav.js"> </script> <STYLE TYPE="text/css"> .titulo { font-family: arial,helvetica; font-style: bold; font-size: 14pt; text-decoration: none; color: #000000; } .texto { font-family: arial,helvetica; font-style: normal; font-size: 10pt; text-decoration: none; color: #000000; } .reporte { font-family: arial,helvetica; font-style: normal; font-size: 7.5pt; text-decoration: none; color: #000000; } </STYLE> <script type="text/javascript"> <!-- function volver(pagina) { history.go(-pagina); } //--> </script> <script type="text/javascript" src="/cvc/comun/validacomun.js"> </script> </head> <body link="#003399"> CONSULTA SITUACION TRIBUTARIA DE TERCEROS <tr> </td> </tr> <center><table border="0" width="630"> <tr> </tr> <tr> </tr>
Me da este error el firefox:
SyntaxError: syntax error
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//E
Muchas gracias