jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Ajax/API/jQuery - Sample Code

load( url, data, callback )

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
                    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="/jquery/js/jquery.js"></script>
  
  <script>
  $(document).ready(function(){
    $("#links").load("/jquery/ #top-news div[class=inner]");
  });
  </script>
  <style>body{ font-size: 11px; font-family: Arial; }</style>
</head>
<body>
  <b>jQuery News:</b>
<ul id="links"></ul>
</body>
</html>
[実行結果]
[load( url, data, callback ) の説明へ]