ファンシーボックスの使用時にタイトルとして表示する画像の「alt」プロパティテキストを取得しようとしています
HTML
<a href='inlinePicture'........
<img alt='Awesome text'......
</a
Jクエリ
$('.inlinePicture').facybox({
title: $(this).find('img').attr('alt')
});
問題は、タイトルに「Awesome text」ではなく「$(this).find('img').attr('alt')」が表示されていることです。何が間違っていますか?
私も試しました:
$('.inlinePicture').facybox({
titleFormat: function (title) {
return $(this.orig).siblings('p').text() || title;
}