//[Javascript]
$(function () {
"use strict";
// To make Pace works on Ajax calls
$(document).ajaxStart(function () {
Pace.restart()
})
$('.ajax').click(function () {
$.ajax({
url: '#', success: function (result) {
$('.ajax-content').html('
Ajax Request Completed !')
}
})
})
}); // End of use strict