목록jquery (4)
PK8AE
jquery 회전 플러그인
jquery
2017. 8. 22. 13:04
jquery 리로드 없이 URL변경
리로드 없이 URL변경 $(document).ready(function(){$('.sub_tab a').click(function(event){history.pushState(null, null, event.target.href);$('#id').load(event.target.href+'#id .id_child',function(){console.log("ok");});event.preventDefault();$(window).on('popstate', function(event){$('#id').load(location.href+' #id .id_child');})});}); 참고URL : https://opentutorials.org/module/2398/13938
jquery
2017. 2. 21. 13:50
jquery 클릭/마우스오버
jquery 마우스오버 $(document).ready(function(){$( ".menu0" ).hover(function() {$('.m_0').show();}, function() {$('.m_0').hide();});}); jquery 클릭 $(document).ready(function(){ $('.content').click(function(){ $('.content'); }); });
jquery
2017. 1. 9. 10:49
ajax 예제
if(!$_POST['value']){ echo "없음"; exit; }else{}?>
jquery
2016. 10. 31. 18:01