123456789101112131415161718192021 |
- $(function () {
- "use strict";
-
-
- $(document).ajaxStart(function () {
- Pace.restart()
- })
- $('.ajax').click(function () {
- $.ajax({
- url: '#', success: function (result) {
- $('.ajax-content').html('<hr>Ajax Request Completed !')
- }
- })
- })
-
- });
|