Question: Hi there, How do I create an image in Javascript? 3. Create a loadApp function that runs when your document is loaded. Inside the loadApp
Hi there,
How do I create an image in Javascript?
3.
Create a loadApp function that runs when your document is loaded.
Inside the loadApp function, I want you to call a function:
createImage(images/imageName.png)
Next, create the function previously mentioned,
createImage(imageSource). Youll need to investigate how to add
attributes to a HTML element using JavaScript.
Add an anonymous function to handle the onclick event of your created
image. Use something similar to this code:
imageElement.onclick = function() { console.log("The user just clicked on the image.");
imageElement.style.opacity = 0.5; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
