I want to remove the id attribute from this image:
<img width="270" class="thumb" id="thumb" height="270" src="img/1_1.jpg" />
I tried to do this:
$('img#thumb').RemoveAttr('id','none');
But it does not delete the identifier!
EDIT:
$('img#thumb').attr('src', response); $('img#thumb').attr('id', 'nonthumb');
This does not load the image, or in this case src! But when I remove the id attribute, it works fine
javascript jquery html image
getaway Jan 04 2018-11-11T00: 00Z
source share