JQuery -Dokument bereit
// jQuery document ready
$(document).ready(function() {
});
Ugly Unicorn
// jQuery document ready
$(document).ready(function() {
});
// A $( document ).ready() block.
$( document ).ready(function() {
console.log( "ready!" );
});
$(document).ready(function () {
// Function code here.
});
// A jQuery( document ).ready() block.
jQuery( document ).ready(function() {
console.log( "ready!" );
});
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
$(function(){
// equal to $( document ).ready(function() {
});