Advertisement
cb_ddewald

Jive - Make User Profile Link

Aug 11th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.39 KB | None | 0 0
  1. <div class="welcome-text">
  2.     <p><a href="#" id="editProfile">Edit your profile</a></p>
  3. </div>
  4. <script>
  5.     // get username
  6.     var userName = window.top._jive_current_user.username;
  7.     // build the URL
  8.     var profileURL =  window.top.location.protocol + "//" + window.top.location.hostname + "/people/" + userName;
  9.     // update link
  10.     document.getElementById("editProfile").href = profileURL;
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement