クリック イベントで jquery を使用して div の幅を調整したいのですが、正確な構文がわかりません。
以下は、これまでに試したことの例です。
$(function() {
$("#square").on("click", function(){
if($(this).css("width", "50")){
$(this).animate({width:"500"}, 1000);
} else {
$(this).animate({width:"50"}, 1000);
}
});
});
前もって感謝します。