Skip to content

Instantly share code, notes, and snippets.

@vkuprin
Created January 16, 2022 00:06
Show Gist options
  • Save vkuprin/c006abb7714ec1641f4cbaace3c0a106 to your computer and use it in GitHub Desktop.
Save vkuprin/c006abb7714ec1641f4cbaace3c0a106 to your computer and use it in GitHub Desktop.
Quora remove authentication popup - dialog
const getDialog = document.getElementsByClassName(
'q-flex qu-alignItems--center qu-justifyContent--center qu-overflow--hidden qu-zIndex--blocking_wall',
);
const getBlur = document.getElementsByClassName(
'q-box qu-overflow--hidden',
);
getDialog[0].remove();
getBlur[0].style.filter = 'none';
getBlur[0].style.removeProperty('position');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment