<div>
インラインbackground
属性が適用されることがあります。
インラインスタイルが付いているか確認したいのですが、付いている場合は先に進んで付けたいと思いbackground-position
ます。
適用されているインライン背景を明示的に確認する方法はあり$(this)
ますか?
if ($(this).css('background').length > 0) {
console.log('has a background');
// set a background position
$(this).css('background-position', 'center 22px');
}