Code:
function getContent(link){
// The variable that makes Ajax possible!
var ajaxReq;
try{
// Opera 8.0+, Firefox, Safari
ajaxReq = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
ajaxReq = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try{
ajaxReq = new
Leave a comment: