レスポンシブデザインと画像について質問があります。
この JavaScript により、ブラウザは「small.jpg」と「big.jpg」の両方をロードしますか?
if (condition1) {
//with jQuery im setting the source for the img tag
$(this).attr('src', 'small.jpg');
} else if (condition2) {
//with jQuery im setting the source for the img tag
$(this).attr('src', 'big.jpg');
}
敬具