scrimba
jQuery
jQuery Working With The DOM
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

jQuery Working With The DOM
AboutCommentsNotes
jQuery Working With The DOM
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="app">
<h2>jQuery Working With the DOM</h2>
<button>Get Images</button>
<ul>
<li>city</li>
<li>transport</li>
<li>food</li>
<li>nature</li>
<li>sports</li>
<li>fashion</li>
</ul>
</div>
<script src="index.pack.js"></script>
</body>
</html>
Console
index.html
-3:34