jqueryで書いたこの関数は、あらかじめロードするのに良い方法でしょうか? はあなたにこの関数はjqueryでプリロードするのに適していますか?
function loader(){
imgTag('#check');
function imgTag(whereToAppend){
var image = 'image.jpg';
$(whereToAppend).append('<img id="imgWrapper">');
$('#imgWrapper').attr('src', image).hide().one('load',function(){
$(this).fadeIn('slow');
})
}
}
私はどんな質問をコピーddnt! – takeItEasy