¿Alguien sabe por qué este código da errores de validación?
Código HTML:
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//WC3//DTD HTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Untitled Document</title> <script language="JavaScript" type="text/javascript"> function final() { document.write('<select>'); document.write('<option>opcion</option>'); document.write('</select>'); } </script> </head> <body bgcolor="#FFFFFF" text="#000000" onload="final()"> </body> </html>
document.write('<select>')
document.write('<select>');
document.write('<option>opcion</option>');
Gracias por vuestra ayuda. Saludos,