Skip to content

Instantly share code, notes, and snippets.

@adeel-raza
Created January 28, 2021 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adeel-raza/7d43c72d00557c84ecb19536291fd912 to your computer and use it in GitHub Desktop.
Save adeel-raza/7d43c72d00557c84ecb19536291fd912 to your computer and use it in GitHub Desktop.
Open in new tab for Join via App button in Zoom WordPress Plugin
<script>
var join_link = document.querySelector('.join-link');
if(join_link) {
join_link.setAttribute('onclick', join_link.getAttribute('onclick').replace('_self', '_blank'));
}
</script>
@adeel-raza
Copy link
Author

Place this snippet in your theme custom HTML option to apply the change

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment