Is an.edu down or not working?
What happened to an.edu, why did the website go down and not work? Here you can see who else is having the same problem with an.edu, as well as possible solutions. According to our statistics, the following most often do not work: Website, Login, Account, Mobile App.
Current status: No failures
At the moment, according to our data, an.edu is working fine, but single failures are possible. If an.edu does not work for you, then report your problem and write a comment.
What to do if the site an.edu is not available? Try our guide.
an.edu outage reports in the last 24 hours
an.edu - error and failure reports, troubleshooting methods
Leave your comment describing the failure and share with other users how to solve the problem.
- No registration required.
- Messages with obscene language and insults, as well as breaking the law, are not allowed to be published.
- Active links in the text of the message are not published, but displayed in plain text.
- It is forbidden to post your own and other people's personal data: addresses, phone numbers, emails, accounts in instant messengers, etc.
Technical information
Main page title: | ||||||||||||||||||||||||||||||||||||||||||||||||
Homepage | American National University | ||||||||||||||||||||||||||||||||||||||||||||||||
Main page description: | ||||||||||||||||||||||||||||||||||||||||||||||||
American National University offers degree programs in business, cybersecurity, computer sciences, and health sciences. | ||||||||||||||||||||||||||||||||||||||||||||||||
Protocol: | ||||||||||||||||||||||||||||||||||||||||||||||||
https | ||||||||||||||||||||||||||||||||||||||||||||||||
Status code: | ||||||||||||||||||||||||||||||||||||||||||||||||
200 | ||||||||||||||||||||||||||||||||||||||||||||||||
Page size: | ||||||||||||||||||||||||||||||||||||||||||||||||
195.2 KB | ||||||||||||||||||||||||||||||||||||||||||||||||
Response time: | ||||||||||||||||||||||||||||||||||||||||||||||||
0.897sec. | ||||||||||||||||||||||||||||||||||||||||||||||||
IP: | ||||||||||||||||||||||||||||||||||||||||||||||||
3.213.39.87 | ||||||||||||||||||||||||||||||||||||||||||||||||
Response headers: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
DNS records: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
SEO headers
h1 We Bring Our University To You
h2 So you can be a(n) Health Information Manager
var el = document.querySelector("#text");
if(document.querySelector("#text")){
var _CONTENT = ["Health Information Manager","Medical Assistant","Phlebotomist","Nurse","Business Manager","Paralegal","Accountant","Cybersecurity Technician","Chief Technology Officer","Network Administrator","IT Manager"];
var _PART = 0;
var _PART_INDEX = 0;
var _INTERVAL_VAL;
var _ELEMENT = document.querySelector("#text");
var _CURSOR = document.querySelector("#cursor");
function Type() {
var text = _CONTENT[_PART].substring(0, _PART_INDEX + 1); _ELEMENT.innerHTML = text; _PART_INDEX++;
if(text === _CONTENT[_PART]) {
clearInterval(_INTERVAL_VAL);
setTimeout(function() {
_INTERVAL_VAL = setInterval(Delete, 50);
}, 1000);
}
}
function Delete() {
var text = _CONTENT[_PART].substring(0, _PART_INDEX - 1); _ELEMENT.innerHTML = text; _PART_INDEX--;
if(text === '') {
clearInterval(_INTERVAL_VAL);
if(_PART == (_CONTENT.length - 1))
_PART = 0;
else
_PART++;
_PART_INDEX = 0;
setTimeout(function() {
_INTERVAL_VAL = setInterval(Type, 100);
}, 200);
}
}
_INTERVAL_VAL = setInterval(Type, 100);
}
String.prototype.replaceArray = function(find, replace) {
var replaceString = this; var regex;
for (var i = 0; i < find.length; i++) {
regex = new RegExp(find[i], "g");
replaceString = replaceString.replace(regex, replace[i]);
}
return replaceString;
};
var names = ["Health Information Manager","Medical Assistant","Phlebotomist","Nurse","Business Manager","Paralegal","Accountant","Cybersecurity Technician","Chief Technology Officer","Network Administrator","IT Manager"];
var links = ["#","#","#"," #","#","#","#","#","#","#","#"];
jQuery(document).ready(function() {
jQuery('.page-content-sub-title').on('click',function(){
jQuery(this).addClass('focus');
});
jQuery( ".page-content-sub-title" ).focusout(function() {
jQuery(this).removeClass('focus');
jQuery('#search_auto').val('');
});
});
search_auto(document.getElementById("search_auto"));
function search_auto(inp){
var currentFocus;
inp.addEventListener("input", function(e){
var a, b, i, val = jQuery.trim(this.value);
var newarray = [];
var newdatas = [];
var $this = this;
closeAllLists();
if (!val) {return false;}
jQuery.each(names, function(index, item) {
var n = item.toLowerCase().indexOf(val.toLowerCase());
if(n+1>0){
var find = [val,capitalizeFirstLetter(val),val.toUpperCase];
var replace = ['<b>'+val+'</b>','<b>'+capitalizeFirstLetter(val)+'</b>','<b>'+val.toUpperCase+'</b>'];
var res = item.replaceArray(find, replace);
newarray.push({"label": item, "link":links[index], "highlight": res});
}
});
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
var arr = newarray;
currentFocus = -1;
a = document.createElement("DIV");
a.setAttribute("id", $this.id + "-resulte");
a.setAttribute("class", "search_auto-items");
var currentCategory = "";
closeAllLists();
if(arr.length>0){
$this.parentNode.parentNode.parentNode.appendChild(a);
jQuery.each(arr, function(index, item) {
b = document.createElement("DIV");
b.innerHTML = item.highlight;
b.innerHTML += "<input type='hidden' data-url='"+item.link+"' value='" + item.label + "'>";
b.addEventListener("click", function(e) {
var value = this.getElementsByTagName("input")[0].value;
var url = this.getElementsByTagName("input")[0].getAttribute("data-url");
jQuery("#search_auto").val(value);
closeAllLists();
setTimeout(function(){window.location.href=url},1000);
});
a.appendChild(b);
});
}
});
inp.addEventListener("keydown", function(e){
var x = document.getElementById(this.id + "-resulte");
if(x) x = x.getElementsByTagName("div");
if(e.keyCode == 40) {
currentFocus++;
addActive(x);
} else if(e.keyCode == 38) {
currentFocus--;
addActive(x);
} else if(e.keyCode == 13) {
e.preventDefault();
if(currentFocus > -1) {
if(x) x[currentFocus].click();
}
}
});
function addActive(x){
if (!x) return false;
removeActive(x);
if(currentFocus >= x.length) currentFocus = 0;
if(currentFocus < 0) currentFocus = (x.length - 1);
var bodyRect = document.body.getBoundingClientRect(),
elemRect = x[currentFocus].getBoundingClientRect(),
offset = elemRect.top - bodyRect.top - 220;
$('#search_auto-resulte').animate({
scrollTop: offset
}, 10);
x[currentFocus].classList.add("search_auto-active");
}
function removeActive(x){
for(var i = 0; i < x.length; i++) {
x[i].classList.remove("search_auto-active");
}
}
function closeAllLists(elmnt){
var x = document.getElementsByClassName("search_auto-items");
for(var i = 0; i < x.length; i++) {
if(elmnt != x[i] && elmnt != inp) {
x[i].parentNode.removeChild(x[i]);
}
}
}
document.addEventListener("click", function(e){
closeAllLists(e.target);
});
}
h5 Academic Programs
h5 Cost & Aid
h5 eUniversity
h5 Request Information
h2 A Degree of Difference…Since 1886
h3 View Academic Calendar
h3 International Students
h2 We Bring Our University To You
h2 Saving You Time and Money
h2 Testimonials
h2 Fit for Life
h2 Support Every Step
h2 Student Spotlights: June 2024
h2 Start your future today. Contact American National University now!
h3 Latest News
h6 Fit for Life
h3 From our Blog
h6 Is Medical Billing and Coding in Demand?
h2 We Bring Our University To You
h3 Who We Are
h3 International & ESL
h3 Prospective Students
How to solve problems with an.edu
Errors on the an.edu website can be either on the server side or on your side (client side). If there is practically nothing to be done about errors on the server side (it remains only to wait for the site to work again), then with errors on the client side it is possible to solve the problem with the availability of an.edu on your own.