$('#slideshow').cycle({
fx: 'fade,cover'
});
On Feb 1, 8:14 pm, Florushj wrote:
> I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately
> I'm no jQuery hero :-(
>
> This is what I want in short:
> It's basically this
> example:http://www.malsup.com/jquery/cycle/pager-do
ah thank you for that help, that clears up most of the issue. THe home
page bug is very "buggy" it happens once in a while and with a refresh
generally fixes itself.
I guess the vast majorit of the time there is no issue. Thank you very
much! I really appreciate it.
On Jan 13, 12:15 pm, "danny.c
On another note, if you use fx: 'slideHorz' it will slide in the
appropriate direction(left/right), depending on button you click
(downwards = left, upwards = left).
On Jan 13, 10:33 am, keli marks wrote:
> Hey all:
>
> I'm having some odd bugs with 2 different kind slideshows.
>
> www.exhaciend
Homepage slideshow seems to work fine for me. Have you since found the
error?
As for the events slideshow, you should be able to avoid image size
issues, try adding height and width attributes to the tags.
Should fix that.
-Dan
On Jan 13, 10:33 am, keli marks wrote:
> Hey all:
>
> I'm having
> Figured it out. The problem is, in fact, with the easing. Cycle has a default
> easing set, but setting it to 'linear' fixes it and makes the entire thing
> smooth.
Hmm, nice.
> Hey, I'm using the JQuery cycle plugin (http://malsup.com/jquery/cycle/) and
> I have images set to auto-scroll horizontally. The plugin automatically
> eases the slides (I've tried turning easing off), and I'm wondering if
> anyone knows of a way to get them to just continually move horizontally
> Thanks for any help on this.
.slideshow li {
width: 100% !important
}
Thanks Mike & Charlie,
It appears that I have the whole shebang working now. All the best to
you both.
Thanks,
On Dec 24, 1:33 pm, Charlie wrote:
> for the arrows you can create absolute positioned containers over top of the
> slides that fadeIn, show or whatever when hover over slide.
> use
for the arrows you can create absolute positioned containers over top
of the slides that fadeIn, show or whatever when hover over slide.
use the "next" and "prev" options to assign selector to your arrows
within the overlay containers
$("mySlideContainer").cycle({
//other options alread
Two pagers, one slideshow:
http://jquery.malsup.com/cycle/pager-two.html
Mike
On Dec 24, 8:54 am, pmAgony wrote:
> Update, I was able to successfully complete #2 and #3. My challenge
> right now is being able to get two synchronized pagers on the same
> cycle.
>
> If anyone can chime in to ass
Update, I was able to successfully complete #2 and #3. My challenge
right now is being able to get two synchronized pagers on the same
cycle.
If anyone can chime in to assist, I'd greatly appreciate it. Here's a
link to take a look: http://www.cuisinteractive.com/staging/etc/index.php
Thanks!
> If there are three slideshows on one page, is there a way to PAUSE
> slideshows B & C when hovering over A?
var $slideshows = $('#A,#B,#C').cycle({
// options
speed: 700,
timeout: 3000
});
$slideshows.hover(
function() { $slideshows('pause'); },
function() { $slides
Try this:
after: function(curr, next, opts) {
var alt = $(next).find('img').attr('alt');
$('#caption').html(alt);
}
On Nov 22, 12:12 am, Wroathe wrote:
> You're on the right track!!! I added an alt attribute to the
> first .featured-image and it displayed exactly where I wanted it!!!
> T
You're on the right track!!! I added an alt attribute to the
first .featured-image and it displayed exactly where I wanted it!!!
The question is now how to select the img tag nested in it (in the
interest of writing valid xhtml).
On Nov 21, 11:06 pm, Wroathe wrote:
> I tried it and it didn't work
I tried it and it didn't work Mike. I did a console.log of the alt
variable afterwards and it was tossing undefined. I think this is
because I have all of the slides wrapped in divs. I'm not sure how to
remedy that problem. Is there a way of selecting the img's alt
attribute using the code you just
I'll give that try and see how it works - thanks in advance for the
reply. I really appreciate it.
On Nov 21, 7:01 pm, Mike Alsup wrote:
> Try using the 'after' callback:
>
> $(function() {
> $('div#slides').cycle({
> timeout: 7000,
> pause: 1,
> pager: 'div#buttons',
Try using the 'after' callback:
$(function() {
$('div#slides').cycle({
timeout: 7000,
pause: 1,
pager: 'div#buttons',
pagerAnchorBuilder: function(idx) {
return '' + idx + '';
},
after: function(curr, next, opts) {
var alt
Finally discovered my own answer to this - the original code only
fails if the fx: parameter is set to 'none' - if set to any other
transition effect it works perfectly. Not sure why this should be, but
there you go.
Can anyone help with this at all?
Matthew
> I am using jquery cycle to make a book presentation. Right now there
> is click-advance and also buttons for next and previous images.
> But what I want is to also have buttons to go to certain pages only,
> e.g. first page, chapter 1, last page.
> What I've found so far is only the possibility t
> the cycle site is down since yesterday, i get a 403 and 404 error, ???
Hosting problems. Content is temporarily available here:
http://www.malsup.com/jquery/cycle2/
Mike
"There's a demo for that".
http://jquery.malsup.com/cycle/count2.html
On Oct 14, 11:48 am, northbeach wrote:
> I have worked out how to use the Next and Prev example here
> :http://malsup.com/jquery/cycle/int2.html
>
> and the count example here:http://www.malsup.com/jquery/cycle/count.html
> Given that, how would you allocate a timeout for say the first 3
> slides and then have the other slides all running at the default
> timeout?
Keep a counter and reference/update it in the timeoutFn. After 3
calls to the timeoutFn, return false thereafter.
Hi Mike,
Thanks for taking the time to respond but it still doesn't work. I've tried
#slideshow1 and #slideshow1 img but still no improvement.
I'm still getting the DOM queuing slideshow error in my console but now the
height and width do have values.
Any more suggestions? Thanks in advance :)
Given that, how would you allocate a timeout for say the first 3
slides and then have the other slides all running at the default
timeout?
On Sep 9, 8:06 pm, Mike Alsup wrote:
> On Sep 8, 6:48 pm, Mike Alsup wrote:
>
>
>
> > > Hey thanks Mike, I got the random timeouts working, however all the
Try adding style rules for the anchors - they are the actual slides in
your case:
#slideshow1 a { height: 463px; width: 841px; display: block; }
Mike
On Sep 15, 5:00 pm, kcory wrote:
> Hi,
>
> I've tried implementing jQuery cycle on my portfolio and it works in FF3 and
> Safari but not in IE.
> When you first visit the page, firefox fails to render the images
> correctly with the first overflowing it's container and the rest
> appearing as squashed thumbnails. When you refresh the page (but not
> shift+refresh) it all works fine.
> Seehttp://www.thecathedraldeli.com/beta.html
> for
On Sep 8, 6:48 pm, Mike Alsup wrote:
> > Hey thanks Mike, I got the random timeouts working, however all the
> > slideshows fade in at the same time on the first transition... is
> > there any way around that? Here is my code:
>
> >
> Hey thanks Mike, I got the random timeouts working, however all the
> slideshows fade in at the same time on the first transition... is
> there any way around that? Here is my code:
>
>
Hey thanks Mike, I got the random timeouts working, however all the
slideshows fade in at the same time on the first transition... is
there any way around that? Here is my code:
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
timeout: 1,
> Hey, does anyone know how I can have the timeout change randomly for
> every slide?
>
These demos might get you going in the right direction:
http://www.malsup.com/jquery/cycle/timeout.html
http://www.malsup.com/jquery/cycle/timeout2.html
The validation errors was what was causing the problem.
Because I'm pulling the photos from a db, I needed the id number. I
added a p, and then stripped off the p using javascript replace.
Pulled the empty ul out and added it via JQuery before my Cycle
function.
Fully valid and the fade effect
in cycle I use before and after options to insert custom functions to
index the text and hide/show, then it's a just a matter of css
positioning and Z-index
Ian Gordon wrote:
I am trying to create something like this:
http://i27.tinypic.com/29p3woi.jpg
The text would be a tag or someth
I checked it on a version of IE7 using VMware and am not seeing the
fade transition working. There are, however, some validation errors
you may want to clean up. the id attribute cannot start with a
number, and it appears that your images for the cycle area all have
this in common.
On Aug 18, 9:
It faded for you in IE7 & 8? I'm not seeing the fade at all in IE.
On Aug 18, 10:55 am, Charlie wrote:
> works in IE 7 &8 for me
> theosoft wrote:I have tried various things to get this to work in IE, and I'm
> not sure why it won't work. The shuffle effect works, but not properly. It
> works
works in IE 7 &8 for me
theosoft wrote:
I have tried various things to get this to work in IE, and I'm not
sure why it won't work. The shuffle effect works, but not properly. It
works in all the other browsers just fine. I've uploaded the code to
jsbin here: http://jsbin.com/icuko
I need
scrollHorz does what you want
noahT wrote:
This it perfect for me but it brings up another issue: I am using a
left-right scroller and as far as I can tell, the fx option only
allows for one type of transition animation (in my case, I am using
fx: 'scrollLeft', so even when I hit the prev
This it perfect for me but it brings up another issue: I am using a
left-right scroller and as far as I can tell, the fx option only allows for
one type of transition animation (in my case, I am using fx: 'scrollLeft',
so even when I hit the prev button, it scrolls to the right when it should
scr
This it perfect for me but it brings up another issue: I am using a
left-right scroller and as far as I can tell, the fx option only
allows for one type of transition animation (in my case, I am using
fx: 'scrollLeft', so even when I hit the prev button, it scrolls to
the right when it should scro
> http://negativespace.ca/clients/mirrorbuilder/
>
>
>
> Works fine in Safari and Firefox so far, but for whatever reason, both
> of those controllers will not show up in IE6 or IE7. I am a little bit
> stumped.
Just looked in IE7 - looks good to me. Did you fix it?
Hi there,
I am having a similar issue, but the functionality I want to achieve
is a bit simpler. Right now I want to apply a link of my choosing to
each slide (in the HTML of the slide), but t this breaks the alt
information pulled from the the pager and displays an "undefined"
error on the page.
Yes, i think that's the way to go, i'm just not talented enough with the js
to write that indexing code. that's why i'm posting here. this thread was
started by someone who had done the same thing, and with some help, got it
to work. i couldn't get his code to work, so i'm hoping someone might h
sorry, didn't realize you were running 12 slideshows. You could change
to classes on all your selectors and index them to shorten code to
one constructor. Not sure that performance wouldn't be a hinderance
though
Ed F. wrote:
Hi Charlie,
I'm sorry i don't think i'm making myself clear
Hi Charlie,
I'm sorry i don't think i'm making myself clear enough. here is the init.js
file that i'm using, you can see the repeated code for each instance of the
slideshow: http://tinyurl.com/mrhkym
as you can see, lots of duplicated code to deal with each unique instance of
the slideshow.
constructor you are showing is only about 10 lines. If the onAfter is
identical events for both you should be able to re use the same
function
after: onAfter1 for both
Ed F. wrote:
Hi Charlie, thanks for the reply, i appreciate it.
That's what I'm doing: repeating the constructor and ch
Hi Charlie, thanks for the reply, i appreciate it.
That's what I'm doing: repeating the constructor and changing the IDs. this
adds 200 extra lines of code to the js file though. Previously in this
thread, someone else figured out a way to not have to add unique IDs to the
html code. so that the
sorry , your next and prev ID's will need to be unique, change them
iin new constructor
Ed F. wrote:
I figured out a way to make the "current slide number" work for multiple
slideshows on the same page, but i have to repeat the function declarations
for each instance of a slideshow, lik
As long as you keep the ID's unique for the separate slideshows *and
pagers* you should be able to call same functions onAfter
duplicate your constructor with the other ID you want to have cylcle
on and change your pager ID accordingly
Ed F. wrote:
I figured out a way to make the "cu
I figured out a way to make the "current slide number" work for multiple
slideshows on the same page, but i have to repeat the function declarations
for each instance of a slideshow, like so:
// init for the cycle js
$(document).ready(function(){
$('#s1').cycle({
fx:'fade',
Hi,
I've done that before.
Check this website: http://www.hoveniersbedrijfdeweerdt.nl/
You can see that the active pager image gets a class. With that class
you can change it's appearance with CSS.
Goodluck!
Admire
On Jul 23, 6:10 pm, matttr wrote:
> Hi,
>
> I am fairly new to both jWuery and
I don't think anyone can help without seeing the problem you are
having. There is obviously something quite wrong with your
implementation, can you provide a link?
iktiar2...@gmail.com wrote:
Hi
hope all are fine :)
like this demo http://malsup.com/jquery/cycle/int2.html ,
i need make
hi Mike,
thank you for replying. your plugin is awesome.
On thing, in your example, you only have one slideshow on the page, I have
multiple slideshows on the page with the updating count. and I can get the
updated count to work for the firat instance of the slideshow but it breaks
for the res
> Hi, I'm working on the same issue with Cycle. I have multiple slideshows on
> a page, each with current/total slide counter, example: "2 of 5 images"
> (oddly, there are no examples of this particular implementation on Mike
> Alsup's otherwise ridiculously varied and helpful cycle demo pages).
Hi, I'm working on the same issue with Cycle. I have multiple slideshows on
a page, each with current/total slide counter, example: "2 of 5 images"
(oddly, there are no examples of this particular implementation on Mike
Alsup's otherwise ridiculously varied and helpful cycle demo pages). and so
the details you want to display can also be contained elsewhere if you
want by using the index of the current slide to match the index of
another set of containers
function onAfter(curr, next, opts) {
var index = opts.currSlide;
// use index to refernece other contai
Thanks guys,
Using that, this is what i have:
$(function() {
$('#slides').before('').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
pager: '#nav',
after: onAfter
});
});
f
> I would like to add another attribute to the img tag called "link."
>
> This attribute would define where the image would link to if someone
> clicks the image.
>
> Then i could do something like: .append('' + this.alt + ' Read more ›');
>
> Does anyone know what/where i can add in the cycle js
you can use the "before" and "after" options in the API to write
functions that trigger on each slide to do what you want
Mescalero wrote:
I would like to add another attribute to the img tag called "link."
This attribute would define where the image would link to if someone
clicks the i
Thanks! Problem solved. It is always the simple things. I appreciate
the help.
On Jul 1, 8:54 am, Mike Alsup wrote:
> > I am having an odd error where the pager generates links but they
> > don't change the slide in FF and Safari. The biggest surprise of all
> > is that it actually works in IE.
> I am having an odd error where the pager generates links but they
> don't change the slide in FF and Safari. The biggest surprise of all
> is that it actually works in IE.
>
> Here is the page I am referring to:http://76.12.208.222/
Try this:
#slideshowPage { position: relative: z-index: 100;
> Is there any way to use something like go to and always have it go to
> a particular image regardless of the slide's position in the cycle? I
> am adding images to the slideshow and every time I add one - the IDs
> change so that go-to #7 is the seventh slide - regardless of what it
> actually
I am having the exact same issue.
On firefox and safari the cycle woks fine.
In ie7 the images are displayed beneath each other.
I hope someone will reply :)
Cheers, Robert
On 8 jun, 14:00, buschii wrote:
> Hi folks,
>
> I am new here and I seached vor problems with IE7 and JQuery Cycle
> Plug
slideExpr: null,
Trailing commas in arrays cause JavaScript errors in IE. Please
enable debugging in your browser so that you can see these errors
reported on the status bar.
On Jun 8, 8:00 am, buschii wrote:
> Hi folks,
>
> I am new here and I seached vor problems with IE7 and JQuery Cyc
> I have been using jQuery cycle plugin for a banned with some content
> that fades in and out in a slideshow sort of thing but I would like to
> be able to div individually. Rather than saying all instances of
> #projects become a slide, i would like #project_img, #project_title
> and #project_de
2009/6/3 Arie :
>
> Hello,
>
> I tried to use Cycle Plugin, and it works great. I have the "Previous
> and Next" navigation work without any problem.
>
> This is the code I have:
>
> -
>
> $(function() {
> $('#feat-container').cycle({
> prev: '#prev',
> next: '#next',
> timeou
Oops. Sorry I misspelled your name, Adrian.
--Karl
On Jun 1, 2009, at 3:58 PM, Karl Swedberg wrote:
On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote:
Use CSS to control the initial display of the images.
How would that be done? Right now this is what I'm using
.pics {
height: 220p
On Jun 1, 2009, at 2:27 PM, Adrian Chen wrote:
Use CSS to control the initial display of the images.
How would that be done? Right now this is what I'm using
.pics {
height: 220px;
width: 960px;
margin-left: auto;
margin-right: auto;
}
.pics img {
width: 960px;
Found how how to do it:
.pics {
width: 960px;
height: 220px;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}
.pics img {
width: 960px;
height: 220px;
}
overflow: hidden did the trick. Thanks!
On Jun 1, 1:27 pm, Adrian Chen wrote:
>
> Use CSS to control the initial display of the images.
How would that be done? Right now this is what I'm using
.pics {
height: 220px;
width: 960px;
margin-left: auto;
margin-right: auto;
}
.pics img {
width: 960px;
height: 220px;
}
> I'm trying this Cycle Plugin, but whenever I load, lets say I have 5
> images in the rotation pool, they all show up (briefly) whenever the
> page reloads, and then they dissapear (starting the rotation).
>
> Is there any way to avoid this? The images I'm using are 960 x 220, so
> it pretty much
> I would like cycle to use my existing anchors
These demos show how to use existing markup for the pager links:
http://www.malsup.com/jquery/cycle/pager3.html
http://www.malsup.com/jquery/cycle/pager4.html
Ok, I think I've got it.
I am now setting up the second slide show at the click event and then
showing it immediately following. Like this:
[code]jQuery('#buttons [href]').click(
function(){
var element = jQuery(this);
var href=element.attr("href");
jQuery('#
Ok,
http://mid-awe.com/webs/presidential/index.html
I'm noticing also now that an additional #s2 slide show is missing
from the initial page load. I'll look at that to see if the issues are
related. Any help is greatly appreciated.
> Can you post a link to your test page?
> Just to clarify; I have two slide shows using the cycle plugin. They
> are both set to display using the same css. Only one should display at
> a time, I want the page to load with one shown and the other hidden,
> then after a link is clicked the slide shows should toggle to display
> the previ
Just to clarify; I have two slide shows using the cycle plugin. They
are both set to display using the same css. Only one should display at
a time, I want the page to load with one shown and the other hidden,
then after a link is clicked the slide shows should toggle to display
the previously hidd
> Thanks for your help the issue is solved. One question to Mike: on the
> jqery site the newest version is 2.34, why did you not put your actual
> version 2.63 - the one that solved my problem - to the jquery site?
Fair question - sorry about the confusion. I don't update that page
very often b
Hi Mike
Hi Thomas
Thanks for your help the issue is solved. One question to Mike: on the
jqery site the newest version is 2.34, why did you not put your actual
version 2.63 - the one that solved my problem - to the jquery site?
Beside updating the cycle plugin I had to build an img class in my c
Hello flyfisherman,
Do you have solved the issues with the solution provided by Mike ?
Thanks,
Thomas
On 14 mai, 00:16, Mike Alsup wrote:
> 2.63 is the latest version of Cycle. And your images do not have
> width/height attributes.
>
> Mike
>
> On May 13, 5:42 pm, flyfisherman wrote:
>
>
>
2.63 is the latest version of Cycle. And your images do not have
width/height attributes.
Mike
On May 13, 5:42 pm, flyfisherman wrote:
> Hello Mike
>
> I have the newest version 2.34 installed and I also gave a width und
> height for the picture id in my css-file (view source code).
> So what
Hello Mike
I have the newest version 2.34 installed and I also gave a width und
height for the picture id in my css-file (view source code).
So what else could it be?
txs
Markus
On 13 Mai, 23:01, Mike Alsup wrote:
> > I am using the cycle plugin on a start page to cycle 5 pictures in a
> > div
> I am using the cycle plugin on a start page to cycle 5 pictures in a
> div id "picture". The first load of the site the pictures are shown to
> small (firefox) or outside the container (opera, safari Win), after a
> reload all is ok!!
>
> I have no clue why this happens. Is there any advice?
>
>
Ok, found the solution.
I am not using the slideExpr but the parent of the container to add
slides and it works.
Also with the a pageranchorbuilder it works when I append the new
pager items.
What is missing is to keep track of images already loaded in the
jQuery script to prevent that images ar
Experimented some more:
When I add
opts.addSlide(ddblockGetSlideHTML(data.slideImg), fwd == false);
The images are appended after the other images, but still not in the
slideExpr
When I add
opts.$cont = '#ddblock-' + opts.ddblocknr + ' .ddblock-container';
before the addslide
It puts the sl
Well your first problem is using GIF files for those photographs in the
first place. Photographs should ALWAYS be JPG files, or PNG if you need
transparency. You can really notice the pixelation on the back end of the
Ferrari, and the sides of the yellow and orange station wagon.
But as for your
I solved this one. I had to use these options:
cleartype: false,
cleartypeNoBg: false
Works nicely. Thanks to Mike Alsup for a great plugin!
On Apr 16, 12:06 pm, "Matt M." wrote:
> Hello,
>
> I was wondering if anyone knew of a solution to be able to use
> transparent .GIFs with the
Maybe the issue is really addSlide in combination with slideExpr.
When images are added they are prepended instead of appended.
So the issue will be how to use slideExpr with addSlide.
If more info is needed, please let me know
On Apr 13, 8:12 am, ppblaauw wrote:
> I read a lot of posts about
Thanks a lot!
That's finally it... phew.
I really appreciate your help.
Hi Amy,
Do the thumbnails follow any naming convention? It wouldn't be terribly
difficult to use a callback to replace the standard Cycle pager with
thumbnails if we are easily able to determine the thumbnail URLs.
Chuck Harmston
http://chuckharmston.com
On Fri, Apr 10, 2009 at 7:24 AM, amuhlou
On Apr 10, 1:11 pm, Skinnyl wrote:
> Hi
>
> Thanks so much for that it works perfectly... except...
>
> If I add a text filled div to be included in the cycle like this:
>
>
>
>
>
>
> text text text
>
>
>
>
> ... Once i've cycled to 4 the 3 images disapp
Hi
Thanks so much for that it works perfectly... except...
If I add a text filled div to be included in the cycle like this:
text text text
... Once i've cycled to 4 the 3 images disappear and only the text div
works. I've used classes instead of IDs
> Ok so i've solved it by changing all the tags and adding new scripts
> for each one
>
> http://www.lukeskinnerdesigns.co.uk/jq-test.html
>
> It looks good but i'm concerned that i'm gonna have a huge amount of
> css and javascript with all the different slideshows.
>
> So is there a better way t
Ok so i've solved it by changing all the tags and adding new scripts
for each one
http://www.lukeskinnerdesigns.co.uk/jq-test.html
It looks good but i'm concerned that i'm gonna have a huge amount of
css and javascript with all the different slideshows.
So is there a better way to do it?
Thanks for your reply but no luck...
That does bring up two sets of navs that work but they are both with
the first #portfolio div as i mentioned in my fist post (situation 2)
They work fine but in the wrong place.
I'm sorry in my previous reply replace the words portrait with the word
portfolio ... sorry.
Ralph
On Fri, Apr 10, 2009 at 12:17 AM, Ralph Whitbeck
wrote:
> Hey Luke,
>
> You have two ID's with the same ID "portrait" You can only have one ID
> named portrait on the page...name the other portrai
Hey Luke,
You have two ID's with the same ID "portrait" You can only have one ID
named portrait on the page...name the other portrait2 or something.
In your jQuery code change $("#portrait")... to $(".pics")...
Both will then work.
Although there seems to be other issues both cycles now cycle.
Hi!
Finally, I reject this effect. What I have done, is turn the Cycle in
a non-flash intro for a client website. I leave here the code for it
is useful to someone, or someone suggests some improvement.
[code]
...
$(document).ready(function() {
$('#body').hover(
function() { $('#contro
I did notice that in IE7 it doesnt like png type images any reason
for that ?
On Mar 31, 8:37 am, "gmca...@gmail.com" wrote:
> After rebooting everything works. Thanks :)
>
> On Mar 30, 9:23 pm, Mike Alsup wrote:
>
> > > Well even this doesnt work in IE...http://www.malsup.com/jquery/cycle/
After looking at it the viewer in IE7 only seems to work with jpg.
When i try to use gif or png it just clocks trying to load the
images. In firefox it works fine tho...
On Mar 31, 8:37 am, "gmca...@gmail.com" wrote:
> After rebooting everything works. Thanks :)
>
> On Mar 30, 9:23 pm, Mike
Actually i tried to run it in IE again a few minutes ago and its doing
the same thing. on the code i wrote and the original site. IT just
sits there and tries to load the pictures. I can see the animation
happening but its just empty pics... ? any other ideas ???
On Mar 31, 8:37 am, "gmca...@gmai
After rebooting everything works. Thanks :)
On Mar 30, 9:23 pm, Mike Alsup wrote:
> > Well even this doesnt work in IE...http://www.malsup.com/jquery/cycle/
>
> > Which isn't my code obviously... only the
> > first pic loads, it says in the status bar the other images are
> > loading in IE
> > s
1 - 100 of 271 matches
Mail list logo