Creating a window application that will perform certain action after every 10 minutes
I was wondering would I still need to use a basic game loop for this particular operation? ...
I was wondering would I still need to use a basic game loop for this particular operation? ...
Hi all, I've built a simple carousel with left and right scroll. Now I want to scroll automatically every 5 seconds. Here's my code: function carousel(){ $j('#carousel_ul li:first').before($j('#carousel_ul li:last')); $j('#right_scroll img').click(function(){ var item_width = $j('#carousel_ul li').outerWidt...