Sandeep Pariyar
Sandeep Pariyar

Reputation: 133

How to redirect to a specific part of a page in codeigniter

I want to redirect to a specific part of a page which has a specific id when using redirect(controller/view). Can you guys help me.

Upvotes: 1

Views: 520

Answers (1)

Shoaib Akhter
Shoaib Akhter

Reputation: 404

You can use #id_of_element with the URL you are constructing.

redirect('controller/view#id_of_your_html_element');

this will load the page to the specific location

Upvotes: 3

Related Questions