function sethelloworld()
{
$("#helloworld").click(function(){alert("Hello world");});
}
function setfoobar(){
$("#foobar").click(function(){alert("Foo bar");});
}
$(sethelloworld); // ตัวย่อของ $.ready(sethelloworld);
$(setfoobar); // ตัวย่อของ $.ready(setfoobar);