tehseen's avatar

How to redirect to page when press enter.

i have a pagination this on my shop page https://ibb.co/PMR1xst I want to write number in center textbox and press enter and it will redirect me to that page.

Is it possible ? if so how ?

Regards

0 likes
1 reply
ftiersch's avatar

You can wrap your textbox with a form that points to the current page and name the textbox "page", then the enter should automatically reload the current url with the page parameter.

<form action="{{ url()->current() }}" method="get">
	<input type="text" name="page">
</form>

Maybe you need an invisible "submit" element too, I'm not quite sure.

Please or to participate in this conversation.