To clear the img src attribute using JavaScript, the following approaches can be utilized:
document.getElementById('tst').removeAttribute('src');
Another way
document.getElementById('tst').setAttribute('src', '');
Copyright © 2025 datapearls.org