Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created December 14, 2018 09:46
Show Gist options
  • Save asathoor/bb81930612ea3b93bc77a0101d51ca06 to your computer and use it in GitHub Desktop.
Save asathoor/bb81930612ea3b93bc77a0101d51ca06 to your computer and use it in GitHub Desktop.
dynamic image javascript
const robot = 'images/myRobot.png';
// create in DOM
let img = document.createElement("img");
img.src = robot;
img.alt = 'A dangerous, wicked robot';
img.class = 'xxx-btn';
img.style.position = 'absolute';
// append to html
result.appendChild(img);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment