Posts by edveloso • 26 points
1 post
- 
		
1
votes2
answers93
viewsA: Click event does not work
You solve the problem by changing the code of your Javascript function myFunction() { alert(evento.id); } for function Evento(evento) { alert(evento.id); } The script function has to match with the…