Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For the Blur/zeroBlur image exercise #21

Open
pirooz-pakdel opened this issue Aug 3, 2017 · 0 comments
Open

For the Blur/zeroBlur image exercise #21

pirooz-pakdel opened this issue Aug 3, 2017 · 0 comments

Comments

@pirooz-pakdel
Copy link

For anyone interested: This code based on previous lessons from this excellent book will also work for this Event Handler exercise. It uses the setAttribute( x, y) method instead of the image.src object/property/value pathway.

<!doctype html>

<title> Image Guess </title> <style> body { margin: 20px; } img { margin: 20px; } </style> <script> window.onload = init;
function init() {
	var image = document.getElementById("zero");
	image.onclick = showAnswer;
};

function showAnswer() {
	var image = document.getElementById("zero").setAttribute("src", "zeroblur.jpg");
	
}
</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant