Skip to content

Instantly share code, notes, and snippets.

@gilbertoquinteroA
Created June 22, 2018 08:42
Show Gist options
  • Save gilbertoquinteroA/a43b2750f0166d2bac8040598a6cd0bb to your computer and use it in GitHub Desktop.
Save gilbertoquinteroA/a43b2750f0166d2bac8040598a6cd0bb to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Document Ready Demo</title>
<link rel="stylesheet" type="text/css" href="/examples/css/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").text("Hello World!");
});
</script>
</head>
<body>
<p>Not loaded yet.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment