quiero saber el color de fondo de un div y que se escriba en otro div
que color se uso
Código Javascript:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <script type="text/javascript"> function tt () { a=document.getElementById("sa").style.background; document.getElementById("contenedor").innerHTML = a; } </script> </head> <body> <a href="#" onclick="tt()">a</a> <div id="contenedor">aqui colocar el valor del fondo de abajo</div> <div id="sa" style="background-color:#006699; height:56px;"> como puedo colocar en el otro div el nombre de fondo que ocupa </div> </body> </html>