';}
document.getElementById('search-pokedex').addEventListener('submit',function(event){event.preventDefault();const pokemon=document.querySelector('input[type="text"]').value.toLowerCase().replace(' ','').normalize('NFD').replace(/[\u0300-\u036f]/g,'');if(pokemon===undefined||pokemon===''||pokemon.includes('..')||pokemon.includes('./'))
return;setLoading();window.location.href='/dex/'+encodeURIComponent(pokemon);});