![]() |
Form Validation: How to Use a Page Bookmark? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Form Validation: How to Use a Page Bookmark? (/showthread.php?tid=12139) |
Form Validation: How to Use a Page Bookmark? - El Forum - 10-07-2008 [eluser]Glowball[/eluser] I have a page with a form far at the bottom of the page. When it goes through its validation, I'd like the resulting page to scroll down to the bottom, like so: http://www.mysite.com/page#bottom How do I set this up? I want it to go there no matter what, if the submission passes validation or not. Thanks! Form Validation: How to Use a Page Bookmark? - El Forum - 10-07-2008 [eluser]Nick Husher[/eluser] Have you tried the following in your view? Code: <?=form_open('page#bottom') ?> Form Validation: How to Use a Page Bookmark? - El Forum - 10-07-2008 [eluser]Glowball[/eluser] That's it! Thanks for the quick help, it works perfectly. |