+ 11
While changing images with JS function how do I change the CSS color and box shadow properties on the border with same click?
3 Respostas
+ 2
Show me how did you change the text and images with Javascript function. I will try to add the color and box shadow for you.
+ 1
You mean:
var change=document.getElementById("myimage");
change.style.color="red";
???
If it is so, check the DOM courses at the JavaScript Tutorial...
Hope it helps...