How to leave the field 2 divs
with the same height as #result4
I gave load
?
<script>
$(document).ready(function() {
$( ".buscascript<?php echo "$row[id]"; ?>" ).click(function() {
$( "#fechargame" ).show();
$( "#result4" ).show();
$( "#result5" ).show();
$( "#result4" ).load( "busca.php?game=<?php echo "$row[id]"; ?>" );
var altura = $("#result4").height();
$( "#publicidade1a" ).height(altura);
$( "#publicidade" ).height(altura);
});
});
</script>