Skip to content Skip to sidebar Skip to footer

Go To Div Of Another Page In Html

I would like to go to the DIV of a particular page from a different page. Is that possible? I tried Hello but it just goes to file.html#

Solution 1:

file.html will need an element with an id="product" attribute. name is deprecated for <a> tags and shouldn't be used.

<div id="product"></div> 

Solution 2:

With HTML 5, you need to simply add an id attribute to your <div> with a value of product. This needs to be a unique id attribute within the page (for all elements):

<div id="product">

See the working draft.

In HTML 4.01 you need to use an anchor tag with a name just above your target div, or any other element with an id attribute in the other page:

<aname="product"></a><div>...

See the HTML 4.01 spec.

Note: The name attribute has been deprecated in the XHTML 1.0 spec.

So, this would be a better option, as it would work for HTML 4.01, XHTML 1.0 and HTML 5:

<div id="product">

Solution 3:

Don't use an anchor. That is outdated. Just give the DIV the id product:

<div id="product">...</div>

Post a Comment for "Go To Div Of Another Page In Html"