Du hast MooTools und jQuery gleichzeitig aktiviert. Da musst du bei eigenen JavaScripts dann aufpassen. Bspw. musst du
HTML-Code:
<script>
$(document).ready(function(){
$("table").wrap('<div class="table-scrollable"></div>');
});
</script>
auf
HTML-Code:
<script>
(function($){
$(document).ready(function(){
$("table").wrap('<div class="table-scrollable"></div>');
});
})(jQuery);
</script>
ändern.
Übrigens: da das JavaScript am ende des <body> auftaucht, kannst du das auf
HTML-Code:
<script>
(function($){
$('table').wrap('<div class="table-scrollable"></div>');
})(jQuery);
</script>
vereinfachen. Oder noch weiter vereinfacht:
HTML-Code:
<script>
jQuery('table').wrap('<div class="table-scrollable"></div>');
</script>