jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Utilities/API/jQuery - Sample Code

jQuery.support


            
<!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(){
    
    $.each($.support, function(key, val){
        $("dl").append("<dt>"+key+"</dt><dd>"+val+"</dd>");
    }); 

  });
  </script>
  <style>
    dt{font-weight: bold;}
  </style>
</head>
<body>
  <dl>
  </dl>
</body>
</html>
            
          
[実行結果]
[jQuery.support の説明へ]