-
$.noConflict();
jQuery(document).ready(function ($) {
var query = '';
if (navigator.userAgent.indexOf('MSIE') != -1) {
query = location.search;
}
$.ajax({
url: '/ias/js.php' + query,
type: 'get',
contentType: false,
processData: false,
cache: false,
success: function (data) {
$('#ias').html(data);
},
error: function (jqXHR, textStatus, errorThrown) {
$('#ias').html('Сервис временно недоступен');
}
});
});