I put this aside for a while...  I still can't get it to work!

jQuery.fn.rolly = function(options) {
        var settings = jQuery.extend({
                speed: 'fast',
                delay: 10000
        }, options || {});
        var jq=this;
        var rollover = function() {
                jq.children().eq(0).appendTo(jq);
                setTimeout(rollover, settings.delay);
        };
        rollover();
        return this;
};

                var rollover = function(){
                        $("#footer").children().eq(0).appendTo("#footer");
                        setTimeout(arguments.callee,1000);
                }
+
               rollover();

works fine

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to