Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate pagination controls without <a> tags #769

Closed
aaronbushnell opened this issue Jul 9, 2013 · 1 comment
Closed

Generate pagination controls without <a> tags #769

aaronbushnell opened this issue Jul 9, 2013 · 1 comment

Comments

@aaronbushnell
Copy link

I'd like to customize the generated pagination more. Currently, the generated pagination looks like this:

<ol class="flex-control-nav flex-control-paging">
    <li><a class="flex-active">1</a></li>
    <li><a>2</a></li>
    <li><a>3</a></li>
</ol>

I'd like to just remove the <a> tags and display something like this:

<ol class="flex-control-nav flex-control-paging">
    <li class="flex-active">1</li>
    <li>2</li>
    <li>3</li>
</ol>

I could use the manualControls option, but that would require me to manually create the DOM for the controls which I'd prefer to avoid. Any suggestions without hacking the core?

@aaronbushnell
Copy link
Author

Also, because of issue #593 I can't use manualControls with jQuery 1.9+.

@jeffikus jeffikus closed this as completed Apr 1, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants