var url = window.location; var urlref = window.location.href; //if the url has profile in the there var profileRegExp = /profile/; var nologPos1 = urlref.search(profileRegExp); if(nologPos1 != -1) { $.ajax({ type: "GET", data: "url=" + url, url: "/mods/rewards/getinfo", success: function(returnData){ //find div by id - "xg_layout_column_1" var parentDiv = document.getElementById("xg_layout_column_1"); //find child node [2], insert a div before it var childDiv1 = parentDiv.childNodes[1]; var childDiv2 = parentDiv.childNodes[2]; //create a new div var rewardsDiv = document.createElement("div"); rewardsDiv.setAttribute("class", "xg_module") rewardsDiv.innerHTML = '

Rewards

' + returnData + '
Rewards Leaderboard
'; // insert the new div before childDiv parentDiv.insertBefore(rewardsDiv, childDiv2); //parentDiv.insertBefore(rewardsDiv, childDiv1); } }); }