How to set id to <a> tag in CodeIgniter pagination.
I use CI 2.1.3
Please, Help me!
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
June 29, 2013 8:18pm
Subscribe [3]#1 / Jun 29, 2013 8:18pm
How to set id to <a> tag in CodeIgniter pagination.
I use CI 2.1.3
Please, Help me!
#2 / Jul 11, 2013 12:05am
give a <span> out of <a> and you can set id to <span>
#3 / Jul 18, 2013 10:16pm
Can you guide me how!?
Thanks!
#4 / Aug 07, 2014 11:01pm
open (system/libraries/Pagination) file
in line 285 and 291
$output .= $this->num_tag_open.'<a href="http://.$this->first_url.>anchor_class.">'.$loop.'</a>'.$this->num_tag_close;change to
$output .= $this->num_tag_open.'<a href="http://.$this->first_url.id=your_id>anchor_class.">'.$loop.'</a>'.$this->num_tag_close;do you need to more help?