1
<a href="something.html#div2">some</a>

something.html

<div id="div1">IMAGES</div>
<div id="div2"> content</div>

The problem is i have few images in div 1 tag..when i click href it doesnt go to div2

1 Answers1

1

You'll want an anchor tag for that, as so:

<a name="div2"></a>

Put that tag in the div you want to shortcut to.

Adam Miller
  • 767
  • 1
  • 9
  • 22