jcarousel

jQuery jCarousel..how to remove the jCarousel from an element

I am using jCarousel to have a carousel of images in my page. It works great and have no complaints, but I am using the tabbing on the page and when I goto another tab, it get an ugly jCarousel error. Basically what I want to do is to remove the jCarousel from my element when I goto a new tab but for the life of me can't figure it out ...

Automatic jQuery Carousel triggering a FancyBox

Hello, I'm a web designer working on a project. I have an idea that would require jQuery. Since my experience with jQuery is fairly basic, I thought I would ask here what might be the best option for what I need. I have a section on the home page of the project. I would like to have a "wall" of images that would be equally spaced. When ...

Getting Index of Current Item in JCarousel

I am attempting to get the index of the current item in a JCarousel so that I can display the current position within the Carousel to the user. For example, 'Photo 5 of 6'. How can I do this? EDIT: Sample of the end product: ...

jCarousel External Event Control

I have been trying to work with a jCarousel external control, but in a way I am finding no examples for. I have 2 objects on my page, a Cycle control called BackgroundContainer and a jCarousel control called mycarousel. What I would like is when the Cycle control fires a change then to have the AFTER event of the Cycle control change t...

Prevent incorrect formatting before jCarousel is initialized

We just started using jCarousel with our application and we're experiencing some strange UI behavior. For a split second before the page is rendered, every LI that makes up the content is shown expanded on the page. Once the jQuery("#carousel-name").jcarousel(); is executed, though, the page springs back to what it's supposed to look lik...

jCarousel: Can you remove all items and rebind to a new collection?

jCarousel documentation states the following: By passing the callback function itemLoadCallback as configuration option, you are able to dynamically create (li) items for the content. {...} jCarousel contains a convenience method add() that can be passed the index of the item to create and the innerHTML string of the item to b...

Scrolling jCarousel by two doesn't work when there are three elements?

I have a jCarousel object that scrolls by two. It works fine most of the time, but if there are three elements it does not highlight the "Next" arrow, and you cannot click it or see the third element. Here is my javascript: $('.assets').jcarousel({ scroll: 2, itemLoadCallback: jCarousel_ItemLoadCallback }); ...

How do you do a circular carousel with jCarousel and static content?

On the jCarousel plugin site there's an example on how to do a circular carousel but it's using dynamically generated content. I would like to know how one can do the exact same thing with static content. Here's the jCarousel circular example using dynamic content: http://sorgalla.com/projects/jcarousel/examples/special%5Fcircular.html ...

cycle plugin with sliding pager?

I have a working cycle script with 6 slides, with the pager fitting perfectly across. If I added more slides how do I get the pager to slide with the current slide, and use that for the arrows (prev/next)? Is this a feature of the jquery cycle plugin? Or do I need to combine it with another? ...

Highlighting current control with jCarousel

Hello all, I'm using the jCarousel plugin and am using this type, with the external controls. Now, the code is already there, hence I'm not pasting it anymore. My query is, how do I get the current external control to be highlighted? Thanks in advance, Indranil ...

JS: Setting background-image with .click event is lagging 1 click behind the carousel image.

Hi, I have got the following code which reads the div.photo.active element's image src attribute, writes it to a variable which then should set it as the (tiling) background image of another div container. All of this works well however when clicking on the a.next and a.prev button to trigger the display:block & display:none states o...

Slideshow plus pop-up Bubble conflict (jQuery)

Hello guys, I'm working with a Slideshow, and I'd like to give to the items in it a smooth pop-up bubble, to give some more info about them on mouseover. The thing is, when I use the nice system that I found here (inspired by a post in jQuery for Designers), combined with jCarousel Lite, it seems to be a conflict. I got both versions ...

Is it posible to save direction in jCarousel (autoplay) plugin?

Currently in jCarousel auto play example , when you click the next or previous button it will continue to its current state, (scroll from right to left). what i want is, is it possible when you click next it will save its direction (scrolling from left to right). ...

jCarousel not working in IE8

I've been trying to get this working for the last hour, but I can't for the life of me, so I thought i'd ask here. I have this code: <ul id="myCarousel"> <% foreach (var date in entryDates) { %> <li> <div style="text-align:center;width:60px;"> <span class="headerSpan" id="day_<%=date.ToString("dd-MM-yyyy")%>">abc</span> <...

Multiple jCarousels in IE7

Hi, I’m working on an MVC app using the jCarousel plugin where I have one carousel on a view and a second carousel on a partial view returned as a dialog when a link is clicked. My issue is that on the second carousel the each function below (from jquery.jcarousel.js) is not hit in IE7 so the carousel doesn’t load. $.fn.jcarousel = fu...

Looking for a JavaScript carousel

I am looking for a JavaScript based carousel such as absolute website. The main part that I am interested in is that it slides in a similar way to the main site flash, highlighting one item/image at a time and items are in a line. Plug-in for any kind of library is welcome but indeed I would prefer jQuery based one as I have used it for...

jcarousel doesn't work properly in Chrome

in my code i am creating a ul li for the jcarousel ie its a list of data(ex. list of photo) when the photo count is more than say 4 , the jcarousel enables horizontal scrolling so as to see next 4 photos . PROBLEM: is when i run the code in chrome the horizontal scrolls remain disabled even if number of photos is more than 4, in other...

Jquery and Ajax Data?

Hi all Nee help again with some Jquery stuff which is driving me nuts! I really hope someone can help with this. Herewith the problem I have 1 jquery function which runs on document.ready which gets data through a Ajax Method. I then want to use jcarousel to display the images on the page. Herewith my Script so far. Where am I going w...

jQuery not working in IE 7 and Chrome

Okay, I have enough code that I probably shouldn't post the code directly, but I'm not sure where the problem lies within it. The page in question is at letterlyyours.com/design.php. How it's supposed to work is that you type in a word, press "Submit", and then little photos of each letter appear below--that you can scroll up and down....

JCarousel Newbie question

Ok here is the situation: I am using the basic example for jcarousel (Carousel with dynamic content loading via Ajax from a PHP script) as a basis: function mycarousel_itemLoadCallback(carousel, state) { // Check if the requested items already exist if (carousel.has(carousel.first, carousel.last)) { return; } ...