Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.onload = function() {
- var imgs = document.querySelectorAll('.bild');
- for (var i = 0; i < imgs.length; i++) {
- var img = imgs[i];
- img.onclick = function(e) {
- e.target.classList.add('active');
- };
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment