CodeIgniter Forums
Page move to the top. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: Page move to the top. (/showthread.php?tid=40586)



Page move to the top. - El Forum - 04-13-2011

[eluser]talwinder[/eluser]
hi everyone! I am having a problem with my application. I m using jQuery with codeigniter to view content on the page when the button is clicked. I got 6 different buttons and each of them displays different html when clicked that works fine. the Problem is when i click the button, the page again moves to the top as it is refershed. I dont want that. I want page to be stay a the same place and text should be changes. Same problem i am facing with my pagination page. when i click nxt page it again move to top.

Please help!!

Cheers!!!


Page move to the top. - El Forum - 04-13-2011

[eluser]InsiteFX[/eluser]
I answered this a couple of days ago SEARCH is your friend!

Internal Linking:
Code:
<a name="last">This is last part of the page</a>

<a href='#last'>Last part</a>

Change last and #last to where you want to go they must match names simple!

InsiteFX