Estoy construyendo un div y anexándolo a un div principal. Al hacer esto, necesito obtener la altura del div tan pronto como lo construya y antes de anexarlo.Jquery - Obteniendo la altura del div construido
por ejemplo,
<script>
$(function(){
var text = $("#ObjText").html(); // This text is dynamic
var dv = $("<div id='childDiv'>"+text+"</div>");
alert($(dv).height()); // This is getting '0' - Need to get the height of the div here.
$("#page").append(dv);
//After appending to page able to get the height of the child div
alert($("#childDiv").height());
});
</script>
En mi cuerpo de la etiqueta,
<body>
<div id="page"></div>
</body>
por favor me ayude en esto. Gracias por adelantado.
Maldita sea, lo extrañé por completo, eso tiene sentido, gracias Murtaza. – Max
¡eres bienvenido! – Murtaza