Advertisement
Guest User

Untitled

a guest
May 26th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.     var url_string = window.location.href
  3.     var url = new URL(url_string);
  4.     var custom_title = url.searchParams.get("custom_title");
  5.    
  6.     if (custom_title != null) {
  7.         var title = document.getElementById("h1-main-title").firstChild.firstChild
  8.         title.innerText = custom_title
  9.     }
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement