JSONP Web サービスから値を取得しようとしていますが、この JSON 配列から値を取得する方法がわかりません。
$('#bookThumbnaill').attr('src', bookDetails.volumeInfo.imageLinks.thumbnail);
$('#bookTitle').text(bookDetails.volumeInfo.title);
//this one does not work!
$('#ISBN').text(bookDetails.volumeInfo.industryIdentifiers.type);
これは、データがどのように返されるかを示す API のドキュメントです。