Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
33
rated 0 times [  40] [ 7]  / answers: 1 / hits: 41305  / 11 Years ago, sat, october 12, 2013, 12:00:00

I am trying to get image in a <div> using onclick.



Now I am getting the text on click. but I want to get the image in div on click...



How can i do this...?



Here is code I have implemented,,



Code:



<script>
function myFunction()
{
document.getElementById(surprise).innerHTML=images/aftersurprise.png;
}
</script>


When I click on element I should get the aftersurprise.png image on surprise element...


More From » html

 Answers
34

use



document.getElementById(surprise).innerHTML=<img src='images/aftersurprise.png' />;

[#75044] Friday, October 11, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
karivictoriab

Total Points: 530
Total Questions: 90
Total Answers: 95

Location: Honduras
Member since Sun, Dec 26, 2021
2 Years ago
;