//initialize $(document).ready(function() { alert("My first jquery test"); } ); or $(function { alert("My first jauery test"); } ); //ajax $.ajax( type: "POST", url: "doAjax.aspx", data: "p=v", success:function(text) { $("#Div1").html(text); $("#Div1").text(text); $("#Div1").append(text); }, error:function() { alert("error"); } ); //extend $extend( { show:function() { alert("ontimer"); } } ); setInterval("$.show()",1000); //others $("#Div1").hide(500); $("#Div1").show(); http://jquery-api-zh-cn.googlecode.com/svn/trunk/index.html