<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
$(document).ready(function(){});
$(function(){});
$('h1').hide();
$('h1').hide();
$('h1').slideUp(1500);
$('h1').slideDown();
$('h1').fadeOut(slow);
$('h1').fadeIn();
$('h1').css('color', 'red');
$('h1').click(function(){});
$('h1').text('');
$('h1').html('');
$('div').find('a'); // 下階層すべてが対象
$('div').children('a'); // 子要素のみが対象
$('h1').hover(function(){}, function(){});
$('div').addClass('');
$('div').removeClass('');
$('div').eq(1).fadeOut();
$('div').index($(this));
$('div').next().addClass();
$('div').prev().addClass();
$('div').attr('id', 'test');
$('input').submit(function(){});
$('input').val();
$('div').animate({'color':'red'},1000);
$('html, body').scrollTop(50);
$('html, body').animate({'scrollTop': 50}, 500);
$('div').offset(); // {top:50, left:100}
$('div').offset().top; // 50
$('div').offset().left; // 100