I think I found the problem but not sure if it is yours. If you disable JavaScript, then you can add spaces so definitely a .js
file causing this issue! You have so many JavaScript files all the time that makes it very difficult to track a specific problem but in your jquery.galleriffic.min.js
there are some keyboard mappings and space is one of them.
So looking at their sources here on line 933
we see the following code:
// Setup Keyboard Navigation
if (this.enableKeyboardNavigation) {
$(document).keydown(function(e) {
var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
switch(key) {
case 32: // space
gallery.next();
e.preventDefault();
break;
case 33: // Page Up
gallery.previousPage();
e.preventDefault();
break;
// and some more cases!
}
});
}
3
solved Space not working in my form? [closed]