1つのイベントonclickに複数の関数を追加したい。
このような。:
$("div").click( function() {
$("img").fadeOut();
$("font").hide();
$("table").show();
});
(コメントから貼り付けた実際のコードをコピーします:)
$(document).ready(function(){
$("#noti_t").click(function() {
$("#noti_show").toggle();
$("#noti_s").hide();
var wholedata="clear=1";
$.ajax({ type: "POST", url: "noti_clear.php", data: wholedata, cache: false, });
return false;
});
});