Need to switch out the image on my online exam paper with AngularJS and HTML at the end of the exam.
When I started the exam, I included img id="online_start" in my code along with css to display an image on the page.
CSS:
#online_start{
background-image:url("start_exam.jpg");
background-repeat:no-repeat;
width:400px;
height:150px;
}
Now, I want to replace that image with another one at the end of the exam using AngularJS.
Code:
<!DOCTYPE html>
<html>
<head>
... (omitted for brevity)
</body>
</html>