[jQuery] Re: jQuery Malsup Cycle Plugin (advanced pager not working in IE)

2009-04-09 Thread Donna Vitan

Sweet jebus, thank you so much. That fixed the problem right up.

On Apr 8, 8:28 pm, Mike Alsup mal...@gmail.com wrote:
  I'm trying to use the advancedpagersimilar to 
  thishttp://malsup.com/jquery/cycle/pager2.html

  However, it only works in FF and not inIE.
  My test page:http://cascodesign.ca/clients/lennard/listing.html

  I think it's great that this will auto generate thepagerthumbnails!
  Any help would be greatly appreciated. Thank you.

 You need to remove the trailing comma after

 random: 1,


[jQuery] jQuery Malsup Cycle Plugin (advanced pager not working in IE)

2009-04-08 Thread Donna Vitan

I'm trying to use the advanced pager similar to this
http://malsup.com/jquery/cycle/pager2.html

However, it only works in FF and not in IE.
My test page: http://cascodesign.ca/clients/lennard/listing.html

I think it's great that this will auto generate the pager thumbnails!
Any help would be greatly appreciated. Thank you.


[jQuery] jQuery Cycle Plugin pager option

2008-04-29 Thread Donna Vitan

I'm currently working on a site that uses your JQuery plugin and so
far it's been great. I'm at a point now were I'm trying to use the
pager option.

CODE:
// Initialize 4 tab show
$(document).ready(function(){
$('#featuretabs')
.before('div id=nav')
.cycle({
fx: 'turnLeft',
speed:  'fast',
timeout: 0,
pager:  '#nav'
});
});

HTML:
div id=feature2
div id=nav class=nav
a class=activeSlide href=#The BIG Guide Book/a
a href=#The BIG Guide Online/a
a href=#College Seminars/a
a href=#College Site Access/a
/div
ul id=featuretabs class=pics
li class=bookp class=leftSentence. /pa
href=public-book.html class=leftMore/a/li
li class=onlinep class=leftSentence. /pa
href=public-online.html class=leftMore/a/li
li class=seminarsp class=leftSentence. /pa
href=public-seminars.html class=leftMore/a/li
li class=site-accessp class=leftSentence. /pa
href=public-site-access.html class=leftMore/a/li
/ul
/div

CSS:


DEVELOPMENT SITE:
http://graphicpointdesign.com/clients/issi-site/index-donna.html

(1) Using your plugin for the header fade animation
(2) Using your plugin to create a pager effect with the 4 tabs
feature

I understand that this option creates links according to the values of
the slides but is there a way that I can use text instead of numbers
as the links? I've even tried using the next and previous classes but
those were not connecting to the 4 different slides.

It's been great working with this plugin so any help will be greatly
appreciated.