Here you can find useful tips about jquery, Javascript, CSS, HTML, Blogger and Web Development.
Some codes from the video.
jQuery("div").load("url") // is the same asjQuery.ajax({ url: "test.html", complete: function(h) { jQuery("div").html(h); }});// only extract h2jQuery("div.load").("file.html h2") // and it is the same asjQuery.ajax({ url: "test.html", complete: function(h) { jQuery("div").html( jQuery(h).find("h2")); }});// To get external scriptjQuery.getScript("somescript.js", function(){});jQuery(document).ready(function(){});// for asyncjQuery.ajax({ url:"somescript.js, async: false});//examplejQuery(document).ready(function(){ jQuery("form").ajaxForm(function(html){ jQuery("#item").val('').focus(); jQuery("ul").html( jQuery(html).find("li"); });});