Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 8, 2021 14:22
Show Gist options
  • Save wpmu-authors/a931ee5568d1d3774622d3b572535fd1 to your computer and use it in GitHub Desktop.
Save wpmu-authors/a931ee5568d1d3774622d3b572535fd1 to your computer and use it in GitHub Desktop.
compatibility.js
/* Regular jQuery */
$('.hideable').on('click', function() {
$(this).hide();
})
/* Compatibility Mode */
jQuery('.hideable').on('click', function() {
jQuery(this).hide();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment