简体   繁体   中英

No Next / Prev Button on jQuery colorbox

I'm using jQuery colorbox ( http://www.jacklmoore.com/colorbox/example3/ ) on my website. And I'm trying to add multiple iframe box. It's working except there is no NEXT/PREV button in it.

Here is my code :

<script>
$(document).ready(function(){
    $('#group1').colorbox({
        arrowKey: true,
        open: true,
        opacity: 0.5,
        iframe: true,
        innerWidth:1000,  
        innerHeight:600,
        scrolling:false,
        rel:"group1"
        }); 
});
</script>

<a id="group1" href="http://tokobagus.com">Tokobagus</a>
<a id="group1" href="http://berniaga.com">Kaskus</a>

As you can see, there's arrowKey: true there, but the arrow is still not showing. Any idea?

Thank you...

Since id is unique, try to change it to class for both of your anchors:

<a class="group1" href="http://tokobagus.com">Tokobagus</a>
<a class="group1" href="http://berniaga.com">Kaskus</a>

and use $('.group1') instead of $('#group1')

Just You have to use class instead of id . check the solution in

http://jsfiddle.net/2kda6/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM