Skip to content

Instantly share code, notes, and snippets.

@bagilevi
Last active November 25, 2018 12:43
Show Gist options
  • Select an option

  • Save bagilevi/a23e5587c20cd26f1d6b3ba5a0ac836f to your computer and use it in GitHub Desktop.

Select an option

Save bagilevi/a23e5587c20cd26f1d6b3ba5a0ac836f to your computer and use it in GitHub Desktop.
Remove links from a wep page, to make it easier to copy text, e.g. when you want to use a translation tool. Works on sites that use jQuery, e.g. Wikipedia.
$('a').each(function(x, e) { $e = $(e); $e.replaceWith($('<span>').html($e.html()))});null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment