Reloading a Page Element via AJAX
/*===========================================================================================*/
function ajaxReloadElement(url, data, targetSelector, httpMethod) {
if (httpMethod == undefined || httpMethod == null) {
httpMethod = 'GET';
}
$.ajax({
type: httpMethod,
url: url,
async: false,
datatype: 'json',
data: data,
success: function (response) {
$(targetSelector).html(response);
} /* success */
}); /* ajax */
}