bind $(document).ready(function(){ $("#id").bind({ click:function(e){ }, keydown:function(e){ }, focus:function(){ }, blur:function(){ }, mouseover:function(){ }, mouseout:function(){ } });}); Language/jQuery 2014. 9. 19. 12:32
Jquery each $(document).ready(function(){ $(":input[name='checkbox']").each(function(i, elem){ if(!$(elem).attr("checked")){ alert("체크가 되지않았습니다"); } });}); Language/jQuery 2014. 9. 19. 12:31
jquery cycle $(document).ready(function(){ $('#pause').click(function() { $('#slides').cycle('pause'); return false; }); $('#play').click(function() { $('#slides').cycle('resume'); return false; }); $('#slides').cycle({ fx: 'fade', speed: 400, timeout: 4000, next: '#next', prev: '#prev' });}); Language/jQuery 2014. 9. 19. 12:24