웹언어/jQuery2013. 5. 3. 18:20

로딩바 이미지 : http://www.ajaxload.info/

위 페이지로 가시면 로딩바 이미지를 다운받으실수가 있습니다.


script

1
2
3
4
5
6
7
8
9
<script type="text/javascript">
   jQuery(function($) {
        var loading = $('<img alt="loading" src="로딩이미지경로" />')
        .appendTo(document.body).hide();
 
        $(window).ajaxStart(loading.show);
        $(window).ajaxStop(loading.hide);
    });
</script>


Posted by 건깡

loading