console.info("Profile.JS code") if (window.jQuery) { $(document).ready(function () { $("#ContentContainer_MainContent_MainContent_ContentBottom_SubmitButton").removeClass ("btn-primary").addClass ("btn-danger"); $("h2").remove(); var fullname = $('div.well').text().replaceAll("\t", "").replaceAll("\n", "").trim(); $("#mainTitle").text(fullname); document.title = "Profile: " + fullname; $("#content_form > div.container > div > div.col-md-4 > div.panel.panel-default.nav-profile > div.list-group.nav-profile > a:nth-child(2)").hide() }) }