A
A
Alexander Shtang2015-07-24 19:56:01
JavaScript
Alexander Shtang, 2015-07-24 19:56:01

How to make the transition from page to page through the intermediary page?

Actually, the problem is in the title.
More details:
1. We are on page #1;
2. Click on the link and go to page number 2 (intermediary page). By itself, as I understand it, contains only a link (second).
3. With no further action other than the aforementioned click on the (first) link, we arrive at our destination, page #3.
ie You need a script for the second page, which automatically starts the process of following the link on this page.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Seva, 2015-07-24
@Enclave88

$(document).ready(function() {
    document.location.href = 'page3.html';
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question