Javascript quand la page est chargée

This commit is contained in:
nyanloutre 2018-10-28 18:06:13 +01:00
parent 03805ff4d7
commit 165a773665
1 changed files with 2 additions and 2 deletions

View File

@ -954,7 +954,7 @@
<?php include('include_foot.html'); ?> <?php include('include_foot.html'); ?>
<script> <script>
$('.carousel').each(function(){ $( document ).ready($('.carousel').each(function(){
var items = $(this).find(".item"), var items = $(this).find(".item"),
heights = [], heights = [],
tallest; tallest;
@ -979,7 +979,7 @@
normalizeHeights(); //run it again normalizeHeights(); //run it again
}); });
} }
}) }))
</script> </script>
</body> </body>