Ver Mensaje Individual
  #7 (permalink)  
Antiguo 01/02/2010, 04:56
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: duda-problema scroll jquery y sql

algo asi?

Código HTML:
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script>
        var i = 6;
        function insertarNoticia()
        {
            $('#contenedor div:last').hide('slow', function () {
                $(this).remove();
            });
            $('#contenedor').prepend("<div>nota "+(i++)+"</div>");
        }

        $(document).ready(function(){
            setInterval("insertarNoticia()",1000);
        });
    </script>
<style>
    div>div{height:20px; width:100px; background-color:red; margin:5px}
</style>
</head>
<body>
    <div id="contenedor">
        <div>nota 5</div>
        <div>nota 4</div>
        <div>nota 3</div>
        <div>nota 2</div>
        <div>nota 1</div>
    </div>
</body>
</html>