$(document).ready(function () {
$("[data-role=content]").not("#ft").children().live({
mouseover: function () { $(this).css({ border: "1px solid gray" }); },
mouseleave: function () { $(this).css({ border: "0" }); } });
});
これは機能していません。境界線が表示されていません。どこが間違っているか教えてもらえますか?