jquery - Trying to add missing img attributes to custom javascript -
i have javascript changes image scr when click on , cycle through. has navigation links , arrow keyboard navigation. i'm having trouble of adding image attributes width, height , alt img scr. when view final result shows: <img class="picture" src="http://i.imgur.com/tl6nw.gif" imageposition="1"> it's missing width,height , alt. in html content have included width,height , alt javascript doesn't seem adding attributes final result. can me fix code? /* set first image in frame #shoebox on document.ready */ $(function() { var leadoff = $('#shoebox img:first-child').attr('source'); $('.picture').attr({ 'src': leadoff, 'imageposition': '1' }); var select = $('#select-jump-to'); $.each($('#shoebox img'), function(idx, img) { select.append('<option value="' + img.getattribute('source') + '">image ...