I\'m looking for a sulotion that check if all images are loaded before they are used in a image slider/rotator. I was thinking of a solution that only show the buttons or th
Rather than checking if all images are loaded, why not create the slider/rotator using the $(window).load() event, rather than the usual $(document).ready()? $(window).load() waits for the page to finish loading, including resources such as images, before executing.
See: window.onload vs. body.onload vs. document.onready (also on Stack Overflow).