jcarousel

scroll by number of elements on jquery-just-another-carousel

Hi, It is possible to scroll by fixed number of child items that will be specified on configuration for jquery-just-another-carousel. Like when we click Next or Previous link then the carousel will be scrolled by 2 child items. http://intrepidstudios.com/projects/jquery-just-another-carousel/documentation.aspx ...

My image gallery (slider) stopped working

Hi, I am using the Florance theme and it comes with a sliding image gallery using jquery and jcarousellite. Somehow it stopped working (it was ok 2 days) and error (object does not support this property or method) points to the script. The site in question is www.happystay.net Please, i need some help. Thanks in advance. ...

input type="text" not clickable in a jcarousel (jQuery based carousel) element

Hello ! I work on a website where almost all objects are in a jCarousel element : <div> <ul id="mycarousel"> <li>object 1</li> <li>object 2</li> </ul> </div> is the "written" code, and : <div class=" jcarousel-skin-tango"> <div class="jcarousel-container jcarousel-container-horizontal" style="display: block;"> ...

Removing an item from jCarousel plug-in

Hello. I have a question regarding the jCarousel plug-in (from sorgalla). How do I remove items from it the right way? You can see how far I've gone here. Try deleting a few items and then scrolling to the right, you'll see an "emtpy scroll" eventually, and that's what I'm trying to get rid of. I've tried using the remove(); jQuery f...

using 2 different jquery releases on the same page

I am using this jquery plugin for a carousel controller http://sorgalla.com/projects/jcarousel/, it is based on jquery release 1.2.1 I also need to have tabs on the page, but when including the current jquery release in the page, the carousel stops working. Is there a way to have them both live together on the same page, or is there a...

jQuery Custom Gallery and jCarousel problem

Active site can be seen here: http://www.studioimbrue.com/index2.php There are currently two small problems with the coding. First: when the page loads and you attempt to click on one of the large images to advance, nothing happens. Once a thumbnail is clicked, the click functionality of the large image comes available. I'm trying to fi...

jQuery detect current thumb and scroll jCarousel accordingly

Another thanks to SLaks for helping me get the code this far. I'm not quite sure if my last step is even possible with the way I have things set up. A live version of the gallery can be seen here: http://www.studioimbrue.com/index2.php Currently, everything works appropriately. The image and its thumbnail are currently tied together, ...

Javascript not working IE any version

Hey everyone. I am having some issues on my end and hopefully it's just something on my end but, could someone take a look at REMOVED SINCE FIXED in IE and let me know if you can see what is wrong. Please check it out first in FF or Chrome or Safari because it all works fine in those browsers. The two scripts I am using are a custom-ish...

jcarousel not getting drawn inside a hidden div

I am struggling since hrs on this one now. I am using a div to populate a ul/li list and then draw a jcarousel out of it. So this works fine $('#mycarousel').jcarousel(); everything works fine as expected... but here is the scenario. the div inside which I have ul/li items could be hidden by the click of another button. When ...

JQuery jCarousel - Disabling external controls

I'm using JQuery and jcarousel, using external navigation controls: http://sorgalla.com/projects/jcarousel/examples/static_controls.html The problem here is the navigation buttons no longer disable as shown here: sorgalla.com/projects/jcarousel/examples/static_simple.html Is there a callback I can use to allow me to swap the active im...

I need to rotate (scroll) images using the galleria module

I am using galleria & jCarousel and need to have the slideshow scroll through the images. Does anyone know a simple javascript that I can use for that? ...

How to make JCarousel Vertical Scroller reverse scroll?

I was able to instantiate a working scroller using jQuery Jcarousel however I need it to reverse scroll. For example right now I have: jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ auto: 1, vertical: true, scroll: 1, animation: "slow", wrap...

JCarousel scroll method does not always fire

var carousel = jQuery('#mycarousel').data('jcarousel'); var index = carousel.size() + 1; carousel.size(index); var html = '<li> some html </li>'; carousel.add(index, html); carousel.scroll(index, 1); The very last scroll method fires but not always. Is this a bug in JCarousel? The following is the code for the scroll method in ...

Prevent Jcarousel from resetting to beginning position on page postback?

I have a nice looking jarousel running from an asp:listview element, with asp:imagebuttons for the images. When clicked, the images in the carousel send the image id to querystring, and the new page is loaded with a larger version of the image and some asp:labels are filled in to describe the image. It looks and works great, except once ...

js carousel with dynamic content

spend soo much time trying to solve this, but here goes: requirements: vertical list of items, in a div-container, structure div/ul/li user should be able to scroll through list, with smooth scrolling by hovering over the div, scrolling accelerates towards the top and bottom the scrolling is endless towards both ends (ie. at the end o...

preventing jCarousel form returning to begining position after loading page

Hi all, i am using jCarousel as a menu in my website. there is a list of links there which is longer than its containing elements and jCarousel is used as a scroll bar to view that list. my problem is that whenever a link is clicked and a new page is loaded, jCarousel resets to its begining position thus sometimes an active link is no ...

jCarousel jQuery plugin - how to stop items being selected on double click

I'm trying to stop items being selected when the next button is clicked in the jCarousel plugin. To see what I mean, have a look at this demo and double click the next arrow... jCarousel demo I tried this code and it seems to work for IE and Mozilla but it doesn't work for Safari or Chrome... /** * Fix carousel selection * http://...

jcarousel not working in IE

i have used jcarousel for my slideshow. it does not work in IE http://ratingscorner.com/product_rating.php?alias=Rashtreeya-Vidyalaya-College-of-Engineering-Mysore-Road-Bangalore&amp;product=colleges any help on it.? ...

jCarousel scrolling from right to left

Hi everyone, i am trying to reverse the scrolling direction of Jcarousel and make it scroll from right to left. anyone knows how that is done? I attach here a link to the Jcarousel code file, perhaps this can help. http://174.133.190.8/~goldarch/jquery.jcarousel.min.js thanks! ...

Is it so bad to have heaps of elements in your DOM?

I am making a real estate non interactive display for their shop window. I have kicked jCarousel into doing what I want: Add panels per AJAX Towards the end of the current set, go and AJAX some new panels and insert them This works fine, but it appears calling jQuery's remove() on the prior elements cause an ugly bump. I'm not sure ...