Ich möchte das ID-Attribut aus diesem Bild entfernen:
<img width="270" class="thumb" id="thumb" height="270" src="img/1_1.jpg" />
Ich habe es versucht:
$('img#thumb').RemoveAttr('id','none');
Aber es wird nicht die ID entfernt!
BEARBEITEN:
$('img#thumb').attr('src', response);
$('img#thumb').attr('id', 'nonthumb');
Dadurch wird das Bild oder in diesem Fall der src! Aber wenn ich das ID-Attribut entferne, funktioniert es einwandfrei