Jquery Ajax

download Jquery Ajax

If you can't read please download the document

description

jaquery basic codes

Transcript of Jquery Ajax

=============== mouse fadeTO ====================$(document).ready(function() { $('div').mouseenter(function() { $('div').fadeTo('fast', 1); });})$(document).ready(function() { $('div').mouseleave(function() { $('div').fadeTo('fast', 0.5); });})----------base$(document).ready(function() { $('coisaParaTocar').event(function() { $('coisaASerAfetada').effect(); });});-------------------------ADicionar a lista$(document).ready(function() { $('#button').click(function() { var toAdd = $('input[name=checkListItem]').val(); $('.list').append(""+ toAdd +""); });}); ------------- Mario$(document).ready(function() { $(document).keydown(function(key) { switch(parseInt(key.which,10)) {// Left arrow key pressedcase 37:$('img').animate({left: "-=10px"}, 'fast');break;// Up Arrow Pressedcase 38:$('img').animate({top: "-=10px"}, 'fast');break;// Right Arrow Pressedcase 39:$('img').animate({left: "+=10px"}, 'fast');break;// Down Array Pressedcase 40: $('img').animate({top: "+=10px"}, 'fast');break;}});});------- effects base$(document).ready(function() { $('div').click(function() { $(this).effect('slide'); });});