私がやろうとしていること: td をクリックして、同じクラスの div を表示します。
$(document).ready(function(){
$("td").click(function () {
var target = $(this).attr("class");
$("div").show("slow"); //I want this div to have same class as target
});
});