I want to know how to add alt attribute to an image in javascript, below is my code...
var image = document.createElement('img');
image.src='../../KY/images/common/buttons/browseIcon.png';
Thanks in advance.
You have two ways : you can use either alt property
image.alt = "Your text here"
or setAttribute method
image.setAttribute("alt","Your text here");
Above mentioned methods would not work when u create buttons or any other element in dom javascript, and for this use the below mentioned method
control.setAttribute("title","your tooltip value")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With