[jQuery] Re: JCarouselLite - pause scrolling

2009-09-06 Thread Jonathan Vanherpe (T & T NV)
Steffan A. Cline wrote: on 8/28/09 5:37 PM, Steffan Cline at stef...@hldns.com wrote: I have a carousel that auto scrolls images. I was asked if there is a way to make it so that if you mouse over the carousel, it stops and when you mouse out, it starts up again. Is this possible? Anyone?

[jQuery] Re: remove() and empy() not work for xml

2009-09-06 Thread g...@iec
Hi.can anybody help me out to come out of this On Sep 5, 7:50 pm, "g...@iec" wrote: > Hi All, > > I got stuck in a situation. > > I have to remove a node from XML using jquery but remove() and empty() > is not working. > > var xmlData = {xml document}; > $(xmlData).find({node}).each

[jQuery] Re: Extending objects with internal objects

2009-09-06 Thread Steven Yang
look here http://docs.jquery.com/Utilities/jQuery.extend#deeptargetobject1objectN the first argument is the deep copy option. check it out On Mon, Sep 7, 2009 at 12:36 PM, roydukkey wrote: > Thanks, that worked. But how di

[jQuery] Re: jquery offline Help document

2009-09-06 Thread Charlie Griefer
On Sun, Sep 6, 2009 at 9:22 PM, vipin wrote: > > How can i get jquery API offline help document. > See http://docs.jquery.com/Alternative_Resources for some options. -- I have failed as much as I have succeeded. But I love my life. I love my wife. And I wish you my kind of success.

[jQuery] Re: Extending objects with internal objects

2009-09-06 Thread roydukkey
Thanks, that worked. But how did you know this, I can't find it documented anywhere? On Sep 6, 5:16 am, 月讀 wrote: > o = $.extend(true, {}, d, s}; > > On Sun, Sep 6, 2009 at 7:50 AM, roydukkey wrote: > > > Is there a better way to extend object with internal objects? > > > $.fn.bestShow = functio

[jQuery] jquery offline Help document

2009-09-06 Thread vipin
Hi all, How can i get jquery API offline help document. Please help. Thanks,

[jQuery] Re: each() causing me jip :[

2009-09-06 Thread ldexterldesign
This may help shed some more light on things: Any tips on not getting this outputting a 'continue reading' link for EVERY , but the whole bunch of 's in the post? http://pastebin.com/m6a6da785 Example here: http://test.ldexterldesign.co.uk/?page_id=9 (disable CSS and you'll see what I mean: htt

[jQuery] Re: jQuery.support : Test if browser return nodes of type Text_Node

2009-09-06 Thread RobG
On Sep 6, 1:38 am, jeanph01 wrote: > Using jQuery.support and without using jQuery.browser how would I know > if the browser would return nodes of Type of Text_Node ? I don't think you need to know that at all - why do you think you need to? > IE do not return text nodes. > > My only idea wou

[jQuery] Re: About jquery append and automatic deleting

2009-09-06 Thread Steven Yang
yeah append actually moves the element. you might want call clone() on the existing element then append the new element created by clone to wherever you want On Sun, Sep 6, 2009 at 3:40 PM, 月讀 wrote: > My English is not weill. > > https://developer.mozilla.org/En/DOM/Node.appendChild > > If chi

[jQuery] Using attr in an tab AJAX call. Is it possible?

2009-09-06 Thread noahT
Hi, I am trying to set an html attribute after an AJAX call. Works great on the initial tab I can't get it to work on the rest: $('#content').tabs({ load: function(){ var postContainerHeight = $('#post_container').height() + 30;

[jQuery] each() causing me jip :[

2009-09-06 Thread ldexterldesign
Hey guys, If you can help me with the fix (line: 9) below that would be great. each() is causing the problem for me, as it's performing the code on each and not the total 's. Can anyone suggest a solution? // create a 'continue reading' - linked to the single post page - if .scrollableItem's p

[jQuery] Re: each() causing me jip :[

2009-09-06 Thread ldexterldesign
line: 11* On Sep 7, 2:25 am, ldexterldesign wrote: > Hey guys, > > If you can help me with the fix (line: 9) below that would be great. > > each() is causing the problem for me, as it's performing the code on > each and not the total 's. Can anyone suggest a solution? > > // create a 'continue

[jQuery] Re: How can I get current Index?

2009-09-06 Thread RobG
On Sep 6, 12:28 pm, din wrote: > > 1 > JM-53 > -- > -- > -- > ROHs > > 2 > JM-54 > ROHs > -- > -- > ROHs > > I want the value of "href" in first tag A is equal to "JM-53_5.htm". > And the the value of "href" in 2nd tag A is equal to "JM-54_2.h

[jQuery] Re: How can I get current Index?

2009-09-06 Thread Jules
This works, but there could be a more elegant way to do it. $(document).ready(function() { var cnt; $("tr").each(function() { cnt = 0; $(this).find("td").each(function() { $(this).find("a").each(function() { aler

[jQuery] Looking for more efficient code: String Matching

2009-09-06 Thread Mat
Hi all, I have a site with a drop down select box which I am using as a jump menu. This select box contains a long list of product types (generated via php) and is structured like this books -cat1 -cat2 cards -cat1 -cat2 --subcat1 toys -cat1 --subcat1 ---subsubcat1 Because I don't want to hack

[jQuery] Re: cursor : pointer // switches to 'default' on click...

2009-09-06 Thread MorningZ
it's the browser doing it, probably because the object loses focus.. you have no control of it On Sep 6, 5:44 pm, general_salt wrote: > I have a link with a return false; > > I have the style (cursor: pointer) set in the CSS and also tried > setting it in Javascript. > > When I click on the lin

[jQuery] Event queu priority.

2009-09-06 Thread HRCerqueira
Hello, I'm working on some elgg thems which use jquery, and I'm trying to attach some events to an object that already has a couple of events attached, but the event I'm trying to attach always executes first, but I want it to execute last in the queue. How can I achieve that. Thanks in advance

[jQuery] cursor : pointer // switches to 'default' on click...

2009-09-06 Thread general_salt
I have a link with a return false; I have the style (cursor: pointer) set in the CSS and also tried setting it in Javascript. When I click on the link, the hand cursor goes to the default arrow. (I'm guessing it's the browsers default behavior to change it back to the arrow when a link is clicke

[jQuery] cursor : pointer // switches to 'default' on click...

2009-09-06 Thread general_salt
I have a link with a return false; I have the style (cursor: pointer) set in the CSS and also tried setting it in Javascript. When I click on the link, the hand cursor goes to the default arrow. (I'm guessing it's the browsers default behavior to change it back to the arrow when a link is clicke

[jQuery] Re: How to unsubscribe?

2009-09-06 Thread Shawn
it shows up after you sign in. (sign in link is in the top right corner) Asif R Naqvi wrote: Hi, thanks for the advise but there's no such link appearing at the right! Am I missing something here or it just not appearing there! Using Chrome. Asif -

[jQuery] Re: Superfish I need some help please

2009-09-06 Thread Bahman Zendesher
Thanks a milon and how kan change teh direction forr all menu to RTl and the text align? wich codes must be changed ? Best regards Bahman Zendesher On Mon, Sep 7, 2009 at 12:28 AM, Charlie wrote: > script will work either way without modification. CSS change left float to > right. If need dropd

[jQuery] Re: Superfish I need some help please

2009-09-06 Thread Charlie
script will work either way without modification. CSS change left float to right. If need dropdowns to switch sides, change li.sfHover ul from left:0 to right:0 Gunash wrote: Hello I need to make this menu RTL can you please assist me wich files must be changed ? Best regard Bahman Zendesh

[jQuery] Controlling jCarousel out of Flash

2009-09-06 Thread anatol
I would like to build a Flash control for a jCarousel. Which JS- command do I have to call within Flash to scroll to a specific item of the jCarousel? Thanks for any advice.

[jQuery] Superfish I need some help please

2009-09-06 Thread Gunash
Hello I need to make this menu RTL can you please assist me wich files must be changed ? Best regard Bahman Zendesher.

[jQuery] Re: How to unsubscribe?

2009-09-06 Thread Asif R Naqvi
Hi, thanks for the advise but there's no such link appearing at the right! Am I missing something here or it just not appearing there! Using Chrome. Asif From: Shawn To: jquery-en@googlegroups.com Sent: Sunday, 6 September, 2009 15:17:09 Subject: [jQuery] Re:

[jQuery] Re: move entire body content in a div

2009-09-06 Thread ryan.j
a good place to start would be to use a container element, .load() content into it and manipulate that rather than the body. On Sep 6, 8:09 am, Petra Meier wrote: > hello, > > I want to display an element underneath (zindex) the entire body. > so I want to move the entire dom from the body node

[jQuery] Slickbox hide

2009-09-06 Thread mediatom...@googlemail.com
Hi, I am trying to hide various divs with one function. It works in firefox, but not in IE. Or perhaps there is a better solution? I have tried about 6 forums, but no one seems to have the answer. Can anyone here help? $(document).ready(function() { $('#slickbox').hide(); $('

[jQuery] move entire body content in a div

2009-09-06 Thread Petra Meier
hello, I want to display an element underneath (zindex) the entire body. so I want to move the entire dom from the body node into an absolute div (top/left 0/0) , then create a new div with that element with lower zindex and place it under the "body" div. how do I best do that with jquery?

[jQuery] zoom and pan problem

2009-09-06 Thread Faiz
hello, i am using jquery-1.2.6.js and jquery.panFullSize.js two js file to Zoon and Pan image. here is my html, Zoom here is my javascript, $("img#mypic").panFullSize(700, 450).css("border", "medium solid black"); $("a#zoom").toggle(function(){ $("img#mypic").normalView(); }, fu

[jQuery] How can I get current Index?

2009-09-06 Thread din
1 JM-53 -- -- -- ROHs 2 JM-54 ROHs -- -- ROHs I want the value of "href" in first tag A is equal to "JM-53_5.htm". And the the value of "href" in 2nd tag A is equal to "JM-54_2.htm". The value of "href" in 3rd tag A is equal to "JM-54_5.htm". HO

[jQuery] Re: jQuery Superfish Problem

2009-09-06 Thread terabyte
It was a problem of Typo Script i change it to: MAIN_MENU = HMENU MAIN_MENU { special = directory special.value = 30 1 = TMENU 1 { expAll =1 wrap = | noBlur = 1 NO = 1 NO {

[jQuery] Re: SuperFish Menu CSS

2009-09-06 Thread gBurgur
Thanks Charlie. That did the trick. Is there documentation anywhere that lists what all the CSS in the Superfish.css do? On Sep 5, 8:20 pm, Charlie wrote: > "$" is shorthand for "jQuery". Script is fine. The width you need to adjust > is .sf-menu ul. If you have multiple widths required try

[jQuery] Re: How to unsubscribe?

2009-09-06 Thread Shawn
go to http://groups.google.com/group/jquery-en. Sign in with the account you used to sign up (probably your email address you receive list mail on). Then on the right hand bar is an "Edit my membership" link. On the resulting page, set the radio button to "no email", hit save, and you shou

[jQuery] How to unsubscribe?

2009-09-06 Thread Asif R Naqvi
Could any please advise how to to unsubscribe from this group?

[jQuery] Re: a probable bug with keyboard events

2009-09-06 Thread alexbodn . groups
hello joern, sorry didn't see your answer. your patch proposed to the ticket is working great. please commit it if you can. On Fri, Nov 14, 2008 at 16:44, Jörn Zaefferer wrote: Finally a ticket: http://ui.jquery.com/bugs/ticket/3587 Jörn On Mon, Oct 20, 2008 at 2:59 AM, alex bodnaru wrot

[jQuery] Re: Extending objects with internal objects

2009-09-06 Thread 月讀
o = $.extend(true, {}, d, s}; On Sun, Sep 6, 2009 at 7:50 AM, roydukkey wrote: > > Is there a better way to extend object with internal objects? > > $.fn.bestShow = function(s) { >var d = { >width: 0, >height: 0, >order: "numeric", >

[jQuery] Re: About jquery append and automatic deleting

2009-09-06 Thread 月讀
My English is not weill. https://developer.mozilla.org/En/DOM/Node.appendChild If child is a reference to an existing node in the document, appendChildmoves it from its current position to the new position. jQuery is actually to invoke the orignal DOM method. On Sun, Sep 6, 2009 at 1:41 PM, lov