背景画像を「クリック時に」フェードインさせたいのですが、これが今私が得たものです。そしてそれは機能していますが、クリックすると画像がフェードインするようにしたいです...
$(document).ready(function() {
//this represents window.load in javascript.
//now to select the element suppose you have anchor tag <a> with id=clickme
$("#test").click(function() {
//select the element whose background image you want to change. suppose with id=imgBack
$("body").css({'background-image':'url(url to image)'});
})
});