Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Creating a div which has next and previous buttons

I'm creating a website and need to create a div that will have next and previous buttons, that will navigate to more content. However, I only want that div to go forward and back without the entire page progressing. Does anyone know a good tutorial?

2 Answers

Christopher Lindor
Christopher Lindor
2,851 Points

Try adding a link to the next div's id

<a href="#id"> TEXT OF LINK </a>

This should bring you to the content and div labeled with the id of your choice.

What would the structure look like for the div?

Christopher Lindor
Christopher Lindor
2,851 Points

The same as you normally would arrange them just before the closing tag of the div add that link and it should bring you to the id that you specified in the href="#id".