I want to select all elements on a page and add a class to them. But two of them shouldn't get this class.
$(document).on('click', '[data-show-link]', function() {
var $this = $(this);
$('[data-show-id]').toggle();
$('*').not($this).not('[data-show-id]').toggleClass('get-opacity'); // ?
event.preventDefault();
});