Skip to content

Instantly share code, notes, and snippets.

@shulgatyy
Last active March 14, 2018 17:18
Show Gist options
  • Save shulgatyy/47fc4560ae21bcfae47d4d9dff3c13ad to your computer and use it in GitHub Desktop.
Save shulgatyy/47fc4560ae21bcfae47d4d9dff3c13ad to your computer and use it in GitHub Desktop.
mobile bookmarklet for view title attr
(() => {
const onclick = e => {
if (e.target.tagName == "A") e.preventDefault();
const title = e.target.getAttribute("title");
if (title) alert(title);
};
document.onclick = onclick;
const docs = document.querySelectorAll("iframe");
[].forEach.call(docs, doc => (doc.contentDocument.onclick = onclick));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment