estoy tratando de escribir adentro de un div y después mandarlo a otro div, pero desde internet como si fuera un input
pero cuando estoy en internet no puedo escribir
Código PHP:
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
> <style type="text/css">
<!--
.a {
background-color: #00CCFF;
height: 300px;
width: 300px;
}
-->
</style>
<script type="text/javascript">
function recibir_datos() {
document.getElementById('recibe').innerHTML=document.getElementById('mandar').innerHTML;
}
</script>
</head>
<body>
<div id="mandar" class="a">escribe datos</div>
<p onclick="recibir_datos()"> este es un boton </p>
<div id="recibe"></div>
</body>
</html>