I tried to make my homepage images random, but i want them to be different everytime. I mean, i don't want to show img1.png four times in a row. I tried to use cookies, but that was a disaster, i couldn't get it work. I have no idea how to get this work, any help, link or tutorial appreciated.

If it helps, here is my main function:

            (function($){
                $.randomImage = {
                    defaults: {
                        path: '101/images/',
                        myImages: ['img1.png', 'img1.png', 'img2.png', 'img3.png', 'img4.png']
                    }           
                }
                $.fn.extend({
                    randomImage:function(config) {
                        var config = $.extend({}, $.randomImage.defaults, config); 
                        return this.each(function() {
                            var imageNames = config.myImages;
                            var imageNamesSize = imageNames.length;
                            var lotteryNumber = Math.floor(Math.random()*imageNamesSize);
                            var winnerImage = imageNames[lotteryNumber];
                            var fullPath = config.path + winnerImage;   
                            $(this).attr( {
                                src: fullPath,
                                alt: winnerImage
                            });
                        }); 
                    }
                });
            })(jQuery);


        $(document).ready(function() { //Main Intro - below that, only intro fadein and outs.
            $('#loadlayyer').fadeOut(2000, function() {}); 
            $('#shuffle').randomImage().ready(function() { 
                $('#shuffle').fadeIn(2500, function() {}).ready(function() {
                    $('#shuffle').one("dblclick", function() {
                        $('#leftcolumn').add('#rightcolumn').add('#shuffle').fadeOut(3000, function() {}).ready(function() {
                            $('#bookofblood').add('#highwaysofdead').fadeIn(3000, function() {});
                        });
                        $('#bookofblood').one("dblclick", function() {
                            $('#leftcolumn').add('#rightcolumn').add('#shuffle').fadeIn(3000, function() {}).ready(function() {
                                $('#bookofblood').add('#highwaysofdead').fadeOut(3000, function() {});
                            });
                        });
                    });
                });
            });
        });
link|improve this question
2  
What was the disaster with cookies? I would say it sounds like you just didn't plan it correctly. You can just store an array of filenames in a cookie and splice them out on page load, then re-save the cookie. when it's at zero length just load the default and start again. no duplicates that way. – Kai Qing Dec 12 '11 at 20:49
i couldn't get it work. I couldn't find a proper tutorial about cookies, the way of adding custom variables to them. ect. – user1008351 Dec 20 '11 at 2:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.