##Include jQuery in a Project
function myCode() {
$(".warning").hide().show("slow");
}
$(document).ready(myCode);
var myCode = function () {
$(".warning").hide().show("slow");
}
$(document).ready(myCode);
$(document).ready(function () {
$(".warning").hide().show("slow");
});
$(function () {
$(".warning").hide().show("slow");
});
//put scripts at the bottom of body element
$(".warning").hide().show("slow");
jquery-succinctly
$('a').text('jquery').attr('href', 'http://www.jquery.com');
$('a').text('jquery').attr('href', 'http://www.jquery.com').appendTo('body');
// ready and load
$(function () {
alert('hussh');
});
$(window).load(function () {
alert('eureka');
});
// end()
$('#list')
.find('> li')
.filter(':last')
.addClass('last')
.end()
.find('ul')
.css('background', '#ccc')
.find('li:last')
.addClass('last')
.end()
.end()
.end()
.find('li')
.append('i am last')