+ 1
How i can make a button which when is clicked appears a image? (i work in html)
Hello ! I want to make a button which makes to appear a image when is clicked
3 ответов
+ 1
https://www.sololearn.com/Discuss/2036568/?ref=app
see omkar's answer
+ 1
Please do not write a sentence (a question) in Relevant Tags 👍
0
Using JQuery:
$(‘#buttonID’).click(function () {
$(‘img’).show();
};