|
<input
|
|
class="w-10 h-8 bg-navbar-color items-center text-center content-center text-text-color rounded-md [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none"
|
|
type="number"
|
|
id="pagnation_input"
|
|
placeholder="..."
|
|
/>
|
|
<script>
|
|
import { pageLoad } from "@utils/events";
|
|
pageLoad(() => {
|
|
const pagenationInput = document.getElementById('pagnation_input') as HTMLInputElement;
|
|
pagenationInput?.addEventListener("keyup", function (event) {
|
|
if (event.key === "Enter") {
|
|
window.location.href = pagenationInput?.value;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|