Recent Posts
Recent Comments
Link
«   2025/09   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

PK8AE

jquery 클릭/마우스오버 본문

jquery

jquery 클릭/마우스오버

pk8ae 2017. 1. 9. 10:49

jquery 마우스오버



$(document).ready(function(){

$( ".menu0" ).hover(

function() {

$('.m_0').show();

}, function() {

$('.m_0').hide();

}

);

}); 



jquery 클릭



$(document).ready(function(){

  $('.content').click(function(){

    $('.content');

  }); 

}); 





'jquery' 카테고리의 다른 글

jquery 회전 플러그인  (0) 2017.08.22
jquery 리로드 없이 URL변경  (0) 2017.02.21
ajax 예제  (0) 2016.10.31