[jQuery] Jquery Image Rotator Question

2010-02-03 Thread Jacques
My company has suggested that we replace all our flash based image rotators with jquery versions. I have used Jquery cycle before http://www.malsup.com/jquery/cycle/download.html But have a question Do these plugins allow the images to be downloaded after the page has rendered? Some of our

[jQuery] Cycle Font Size off one button

2009-10-29 Thread Jacques
I am using the following code to adjust the size of all P tags. This tag is design to work with three buttons a increase font button a decrease font button and a reset button I would like to modify this so it works with just one button I would like the first 4 clicks to run the increase font s

[jQuery] .load contents of HTML fragment problem TD > LI

2009-10-19 Thread Jacques Choquette - WhistlerGraphicDesign.com
Ok here is a stumper I am trying to load the td contents from one page into an ordered list on another page I have a page called inc_menu.html with the following code menu 1 menu 2 then I have a page called loadMenu.html that looks like this http://ajax.googleapis.com/

[jQuery] Re: Troubles with appending page title and url to social link

2009-09-17 Thread Jacques Choquette - WhistlerGraphicDesign.com
works great thanks or your help here is the final code incase anyone wants something like this Html jquery $(document).ready(function(){ var url=document.URL; var title=document.title; $('#s

[jQuery] Re: Help with show hide function

2009-08-22 Thread Jacques Choquette - WhistlerGraphicDesign.com
This is what I ending up going with I seriously doubt this is the most efficient / proper way to do this this but it's working anyways $(document).ready(function() { // hides the all tabs as soon as the DOM is ready // (a little sooner than page load) $('#homeTab').hide(); $('#whoTa

[jQuery] Help with show hide function

2009-08-21 Thread Jacques Choquette - WhistlerGraphicDesign.com
HI Everyone I have the following jquery script $(document).ready(function() { // hides the all tabs as soon as the DOM is ready // (a little sooner than page load) $('#homeTab').hide(); $('#whoTab').hide(); $('#whatTab').hide(); $('#whereTab').hide(); $('#workTab').hide(); // dis

[jQuery] superfish arrows only on sub menus

2009-07-17 Thread Jacques Choquette - WhistlerGraphicDesign.com
anyone know how to modify the superfish script so the auto generated arrows only appear on the sub menus?

[jQuery] Add icons to your links automatically

2009-07-15 Thread Jacques Choquette - WhistlerGraphicDesign.com
HI there I am using the working with the following script Add icons to your links automatically using jQuery & CSS http://cool-javascripts.com/jquery/add-icons-to-your-links-automatically-using-jquery-css.html // Add pdf icons to pdf links $("a[href$='.pdf']").addClass("pdf"); but I only wan

[jQuery] Function now working in safari

2009-07-10 Thread Jacques Choquette - WhistlerGraphicDesign.com
Can somebody see if if I am doing something wrong here? here is my html Volunteer Opportunities Become a Games Time Information Host and welcome the world home to Whistler. and here is a function that I run once the document is loaded $(".JQorangeHighlight").hover(

[jQuery] Is there a more efficent way to write this script?

2009-07-10 Thread Jacques Choquette - WhistlerGraphicDesign.com
Hi there I am new to jquery tonight and I have already build the below script and everything seems to be working however I suspect there is a better way to write this out? like for instance here $(this).children("h3").children("a").css("text-decoration", "underline");$(this).children("a").css("t

[jQuery] How to target change css attribute of P tag when hovering over parent div

2009-07-08 Thread Jacques Choquette - WhistlerGraphicDesign.com
I have the following code $('.box').hover( function(){ $(this).css('background-color','#6bc6f2'); $("p").css ('color','#fff') }, function(){ $(this).css('background-color','#fbf9f9'); $("p").css ('color','#000') } ); I have the .box class applied to a div basically I what to hover over the d

[jQuery] Re: ANNOUNCE: jQuery listnav plugin

2008-10-07 Thread Jacques PYRAT
Great ! Could you do the same for definition lists (dl, dt, dd). It would be great for http://www.pyrat.net/@sigles.html And does listnav handle EÉÈÊEeéèêë ? Regards

[jQuery] Re: jCarousel: question and feature reqs

2008-05-09 Thread Jacques Jocelyn
Item8| | | |_| |_| |_| |_| | - so when clicking on arrow left and right, we could see other items (9 and above) Please advise, Thanks Jacques

[jQuery] Re: access to dynamic DOM content/id

2007-07-28 Thread Jacques Jocelyn
Klaus, Thanks for the hint. very useful ! Jacques On Jul 28, 2:51 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Jacques Jocelyn wrote: > > All, > > Sorry if this question was asked before, but I've been searching but > > no real answer to this particular topic >

[jQuery] access to dynamic DOM content/id

2007-07-27 Thread Jacques Jocelyn
("//items/item", xml).each(function(){ output+="" +$('description', this).text(); }); $("#radio").empty().append(output); no success; my Alert request never appears How can you access to the content id created dynamically with jquery ? Is there a command to refresh the dom document ? thank you Jacques

[jQuery] Re: Session problems

2007-07-20 Thread Jacques Jocelyn
Would you have a sample of code where you're seeing the issue ? are you referring to the Server session ? Jacques On Jul 20, 1:00 pm, Oscar esp <[EMAIL PROTECTED]> wrote: > I have a App devoloped with asp & jQuery. > > I have a strange behaviour with the session. S

[jQuery] Re: get a form value after a post and page reloaded

2007-07-02 Thread Jacques Jocelyn
my JS scripts. Jacques On Jul 2, 10:57 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote: > Jacques Jocelyn wrote: > > $(document).ready(function(){ > > $('#protected').change(function(){if ($(this).val()=='Y' ) $('# > > t

[jQuery] get a form value after a post and page reloaded

2007-07-02 Thread Jacques Jocelyn
ed with Jquery ? Is there any way to set a value (div to be shown) when the form is loaded ? Thanks in advance. Jacques