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.
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")
© 2022 - 2024 — McMap. All rights reserved.