body{
background-image: "image.jpg";
}
How can I change the background image suppose 'image1.jpg,image2.jpg...' after 5s.
Found this script on StackOverflow for changing the image, but I also need to change it after few seconds and also Without Click
<script type="text/javascript">
$(document).ready(function() {
$('body').css('background-image', 'url("image2.jpg")');
});
</script>