79705380

Date: 2025-07-17 20:44:23
Score: 0.5
Natty:
Report link

After some tweaking, here is what I came up with:

$(function() {
 $('a.page-numbers').on('keydown', function(e) {
 if (e.which === 32) {
  e.preventDefault();
  $('a.page-numbers')[0].click();
 }
});

Works like a charm, hope this helps anyone else!

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: shacker