i'm trying to create an anchor to a page's element. There's a tab interface. In html i can see that their links are like this:
http://example.com/index.php/service#tab-1
http://example.com/index.php/service#tab-2
http://example.com/index.php/service#tab-3
http://example.com/index.php/service#tab-4
So that i have 4 div's with id's tab-1,tab-2 etc.
How can i create anchor to them from another view file? When i try this:
<a href="<?=site_url();?>/service#tab-1">give it a try</a>
it goes to page /service but not focused on #tab-1 . It was working on plain html, but i couldnt do it with codeigniter
Thanks for help!