以下の例で追加引数をコーディングするクリーンな方法を探しています。
imgBox$.append("<div class='cellGrip cellGrip_se' title='Drag'></div><div class='cellGrip cellGrip_sw' title='Drag'></div><div class='cellGrip cellGrip_ne' title='Drag'></div><div class='cellGrip cellGrip_nw' title='Drag'></div>");
上記は機能しますが、わかりやすくするために、次のように記述します。
imgBox$.append("<div class='cellGrip cellGrip_se' title='Drag'></div>
<div class='cellGrip cellGrip_sw' title='Drag'></div>
<div class='cellGrip cellGrip_ne' title='Drag'></div>
<div class='cellGrip cellGrip_nw' title='Drag'></div>");
しかし、その後、文字列が終了していないという苦情が寄せられます。
アイデアをありがとう。