25/08/2011, 13:39
|
| | Fecha de Ingreso: enero-2011
Mensajes: 104
Antigüedad: 14 años Puntos: 0 | |
Respuesta: como puedo hacer que el navegador cargue un DIV central? ok vere haber si funciona, pero ya lo intente algo asi y no me funciono:
<script>
$("#location_left").show();
</script>
<script>
if (document.getElementById ('location_left'). style.display == "none"){
$(window).resize(function(){
$('.global').css({
position:'absolute',
left: ($(window).width() - $('.global').outerWidth())/2,
top: ($(window).height() - $('.global').outerHeight())/2
});
});
// Ejecutamos la función
$(window).resize();
}
</script> |