$("button").bind("expand", function(){
something();
});
$("button:first").trigger("expand");
** bind 라는 메소드로 expand라는 단어와 함수를 묶고
첫번째 버튼이 실행될 때 expand에 묶인 함수를 실행시킨다는 뜻?
post("send.php", { foo: "bar"}
$("button").bind("expand", function(){
something();
});
$("button:first").trigger("expand");
** bind 라는 메소드로 expand라는 단어와 함수를 묶고
첫번째 버튼이 실행될 때 expand에 묶인 함수를 실행시킨다는 뜻?
post("send.php", { foo: "bar"}