Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $.swipebox( [
  2. { href:'big/image1.jpg', title:'My Caption' },
  3. { href:'big/image2.jpg', title:'My Second Caption' }
  4. ] );
  5.  
  6. $.swipebox( [
  7. $.each( data, function(index, val){
  8. { href:data[index].image_link, title:data[index].image_title }
  9. } )
  10. ] );
  11.  
  12. $.swipebox($.map(data, function (val, index) {
  13. return {
  14. href: val.image_link,
  15. title: val.image_title
  16. }
  17. }));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement