Código:
Como hago para que cuando le de al enlace (que e destacado) me aparezca, lo que hay dentro del DIV, por defecto, osea la palabra "Prueba"???<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>Mini-tutorial AJAX</title> <script src="ajax.js" language="JavaScript"></script> <style> #detalles { margin: 20px; border: 1px solid #F0F0F0; padding: 10px; font-size: 10px; } </style> </head> <body> <h4>Mini-tutorial AJAX</h4> <a href="#" name="001.html" onclick="cargaXML(this.name)">001</a><br /> <a href="#" name="002.html" onclick="cargaXML(this.name)">002</a><br /> <a href="#" name="003.html" onclick="cargaXML(this.name)">003</a> <a href="#" inicicio <!-- <select onchange="cargaXML(this.value)"> <option value="">Elige...</option> <option value="001.html">001</option> <option value="002.html">002</option> <option value="003.html">003</option> </select> //--> <div id="detalles"> Prueba </div> </body> </html>
Gracias de antemano
bichomen