Home > Enterprise >  Jump in another section of another file
Jump in another section of another file

Time:04-02

If I am in index.html how can I jump in

of index-2.html? I have try to write in index.html:

<a href="#here-i-want-to-jump"></a>

And in index-2.html:`

<p id="here-i-want-to-jump">Ciao sono un testo qualunque</p>

But its clear that de id does'nt exist in index.html. So How can I jump?

CodePudding user response:

$<a href=" index-2.html#here-i-want-to-jump">Redirect to section of second Page</a>

Its Easy You can Try this

CodePudding user response:

You should include the reference to index-2.html:

<a href="./index-2.html#here-i-want-to-jump">Some text</a>
  • Related