CJCoding With Joseph

Set an Image's Width

Select the image with id="pic" and set its width attribute to "200" using setAttribute().

Platform-Provided HTML (READ-ONLY):
<img id="pic" src="cat.png">

Steps:
1. Select the image with document.getElementById().
2. Call setAttribute("width", "200").

Expected Output:

<img id="pic" src="cat.png" width="200">
Topics:
HTML DOM
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.