次の変数を次のように渡したい:
var $headerHeight = jQuery("#header").outerHeight() - jQuery("#header .main-menu").outerHeight();
jQuery(this).find('nav').attr('style', 'margin-top:' + $headerHeight + '!important');
明らかに間違った構文で使用されています。ただ、正しい使い方がわかりません。jQuery の「.css」関数は、「!important」宣言が必要なため、オプションではありません。上記の例をどのように渡すことができ$headerHeight
ますか?