How and where to include custom JS only for specific pages

Or do dis

(function ($) {
  $('.selector').text('you can use the `$` like normal in here');
  $('.button').on('click', function () { 
    alert('yee'); 
  });
})(jQuery);
1 Like