jQuery Playground Online Template

Code, Debug, Demo and Learn Easy & Fast with jQuery Playground Online

// A $( document ).ready() block.
$(document).ready(function() {
    $('#root').html('Hello, jQuery!');
    console.log("DOM is ready!" );
});
<div id="root"></div>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html,
body {
  font-family: 'Roboto', cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 30px;
}