Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript code redirect to a division on the same page

Allright this might be a general question but i wasn't able to find an answer to it.

I want the browser to move to another division(part) of the page once a user has clicked a specific button.How can this be achieved.

like image 898
user3274745 Avatar asked Feb 07 '14 12:02

user3274745


Video Answer


1 Answers

<a href="#idOfAnotherPart">Click Here</a> will move the page to the div or some other element whose id is idOfAnotherPart

like image 186
Amit Joki Avatar answered Sep 28 '22 16:09

Amit Joki