I am facing an issue in pagination counter, I am using yii2 pagination, on keypress it is going to another page i.e http://localhost/web/index.php?r=test/page=1
so I need to increment the page value in the upper url
I am already doing like this but it is not working, the value is increment only once, and I need to increment the value for every page
<script type="text/javascript">
var val = 1;
$(document).keydown(function (event) {
val++
if (event.keyCode == '39') {
window.location.href = "localhost/web/index.php?r=test/page="+ val;
}
});
</script>
please give some suggestions, thanks a lot.