I have the following code.
$(document).ready(function(){ $(\'#listing img\') .attr(\'width\', 250) .removeAttr(\'height\').removeAttr(\'align\').removeAttr(\'
Yes, you can remove it in that way:
$('#listing img').removeAttr('height align style');
you can also add those attributes as follows:
$('#listing img').attr({ height: "20", align: left }).css({ color: red, text-align: center });