Extraer el contenido de un div
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
<script type="text/javascript">
$(document).ready( function() {
$(".div").mouseover( function() {
var div;
div = this.innerHTML;
$("#otrodiv").empty().append(div);
});
});
</script>