2
https://www.jqueryscript.net/demo/Smooth-Single-Page-Transition-Effects-Using-jQuery-CSS3-page-js/
I want to make 1 site like this, one page only but divide it into two parts, right and left. The site’s structure will be found in these two Ivs being the first this:
<div class="page" data-jquery-page-name="11">
<div class="title">Page 11</div>
<div class="navigate" data-page-name="12" data-page-trans="slide-in-from-right">slide-in-from-right</div>
</div>
and the second will be this:
<div class="page" data-jquery-page-name="12">
<div class="title">Page 12</div>
<div class="navigate" data-page-name="11" data-page-trans="slide-in-from-left">slide-in-from-left</div>
</div>
my question and how can I redirect to the second div, being that if I do header('Location:index.php');
I will automatically be redirected to the first div (data-jquery-page-name="11") and what I really want is redirected to the second div (data-jquery-page-name="12)
Do you already have the HTML/CSS/JS structure? The page you cite in the question is a plugin. Already downloaded it and tried to implement?
– Sam
yes, I have the whole site already assembled. My problem is when I send 1 form that always goes back to the first div. https://spil.development.pt
– Ricardo
It would be the contact form?
– Sam
yes, can test, the link I sent to better understand the problem!
– Ricardo