I'm not sure if I need the each() function here or if I can somehow do this with this. I'm trying to switch the src attribute based on the if statement. It works except that it switches them both to hifi1.jpg. How do I make it so it applies each img's data-websrc value to itself?
HTML:
<img class="airsrc" src="lofi1.jpg" data-websrc="hifi1.jpg" alt="example1">
<img class="airsrc" src="lofi2.jpg" data-websrc="hifi2.jpg" alt="example2">
JS:
jQuery(document).ready(function($) {
var airsrc = $('.airsrc');
airsrc.each(function() {
if ( Modernizr.mq('(min-width:480px)') ) {
var src = $(this).data('websrc');
airsrc.attr('src', src);
}
});
});
Update: Solution:
jQuery(document).ready(function($) {
if ( Modernizr.mq('(min-width:480px)') ) {
$('.airsrc').each(function() {
var $this = $(this);
var src = $this.data('websrc');
if ( src != '' ) {
$this.attr('src', src);
}
});
}
});
That works in browsers that support custom data attributes, which from my testing I've found to mean FF/Chrome/Opera/Safari. Maybe IE9. I think getAttribute can be used though for (older) IE.

$(this).data('websrc');will return the value of the image'sdata-websrcattribute (which is an invalid attribute anyway, but that is a different matter)? – Delan Azabani Aug 13 '11 at 14:22each,attrandthisare completely orthogonal. – Lightness Races in Orbit Aug 13 '11 at 14:24airsrc.attr()instead of$(this).attr()inside your each() loop, therefore it sets the attribute on everything in the collection as opposed to the specific element. – Chris Aug 13 '11 at 14:24