[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-22 Thread macmike
I downloaded and copied the "Agile Carousel" stuff to my testserver without editing anything. When i try to open the "carousel.html" page i unfortunately get an php error. The error message for the jquery.agile_carousel-beta.1.zip is: --- Fatal error: Call to undefined

[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-22 Thread macmike
I downloaded and copied the "Agile Carousel" stuff to my testserver without editing anything. When i try to open the "carousel.html" page i unfortunately get an php error. The error message for the jquery.agile_carousel-beta.1.zip is: --- Fatal error: Call to undefined

[jQuery] Re: Get Lightbox and Innerfade plugins work together

2008-09-22 Thread redcirce
Hello there. I had a similar problem to yours, which I have just solved now. I'm not sure if this is good coding or not, but it works which is enough for me. I was also using 2 plugins - lavalamp and coda-slider, both of which worked fine in isolation, but on the same page only the first plugin

[jQuery] Re: Treeview problem with checkboxes in IE

2008-09-22 Thread mrhankey
Here is a trimmed down test page that exhibits the problem. test.cloudbase.org.nz/node/127 The icons seem to display differently on IE6 and IE7 too. On Sep 22, 7:39 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Can you build a testpage that doesn't require any browser plugins to > install fi

[jQuery] Re: IE ignores event load()

2008-09-22 Thread Martynas Brijunas
Hi, > Is your XHTML mark-up valid? (assuming you're writing XHTML) That may > affect the events behaviour. I am using XHTML 1.1, the W3 validator gives it all green. Took me a while to achieve that. I will try the site on IE7 to see if it has the same problems. Maybe it is the IE6 fault. Martin

[jQuery] Re: 2 plugins - coda slider effect & lavalamp effect

2008-09-22 Thread redcirce
Solved this issue. Thanks anyway. On Sep 23, 1:07 pm, redcirce <[EMAIL PROTECTED]> wrote: > Hi there.  I'm having problems getting these two effects to work on a > page together.  I've tried them in isolation of each other and they > work fine, but on the same page, it's not happening. > > Here

[jQuery] Re: cascade question

2008-09-22 Thread Mike Nichols
Sorry I missed this. I do the same thing ricardo recommended when unable to load the values from the server on load. On Sep 18, 12:23 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > oops, I didn't pay attention. > > You need to set the selected attribute and then fire the 'change' > event on the par

[jQuery] Re: dynaCloud - alphabetical sorting and allow & in words?

2008-09-22 Thread pedalpete
So I got the cloud sorting alphabetically by changing the sort function from [code] if ($.dynaCloud.sort) { cl.sort(function(a, b) { if (a.count == b.count) { return a.el < b.el ? -1 : (a.el == b.el ? 0 : 1); } else { return a.count < b.count ? 1 : -1; } }); } [

[jQuery] Mousemove for simple signature panel

2008-09-22 Thread Jacky
Hi all, I tried to create a simple signature panel ( http://jackysee.googlepages.com/sig.html). The principle is simple: create div when mouse is down and moving. But it seems that the 'mousemove' interval is quite large and the drag only gives a dotted line. Any way to improve this? -- Best Re

[jQuery] Re: Referencing elements with 2 or more classes and no Id

2008-09-22 Thread Karl Rudd
Something else is the problem. Two (or any number of) classes shouldn't make a difference. I just double checked the example you posted initially and it works as expect. $('div.b-visibleUrl-short') finds the fire element and not the second. $('div.b-visibleUrl') finds both elements. Karl Rudd

[jQuery] Re: A better way to animate this list..?

2008-09-22 Thread Eric
You can trim it down a bit by using the index that each() passes to the callback function: $('#jq-secondaryNavigation li').each( function(i) { var that = $(this); setTimeout( function () {that.fadeIn('slow')}, i * 500 ); }); On Sep 22, 11:14 pm, ricardobeat <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Referencing elements with 2 or more classes and no Id

2008-09-22 Thread Tester
Thanks for the suggestion! That's actually what I started with. While it's perfectly fine in situations with one class assigned to elements (e.g. ) it doesn't seem to detect it in my situation with two classes. On Sep 22, 9:13 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Remember that jQuery uses

[jQuery] Re: Troubleshooting selectors

2008-09-22 Thread ricardobeat
Not sure on this, but I think jQuery ignores the first ID to get a faster match. Try $("#headera > #headerright a:not([href*=logout])") Note that the "@" in front of attribute names has been deprecated. - ricardo On Sep 22, 11:06 pm, owen <[EMAIL PROTECTED]> wrote: > This looks right to me, bu

[jQuery] Re: A better way to animate this list..?

2008-09-22 Thread ricardobeat
got it! :D $('#jq-secondaryNavigation li').each(function(){ var index = $('#jq-secondaryNavigation li').index(this); setTimeout("$('#jq-secondaryNavigation li:eq("+index +")').fadeOut(300)",index*500); }); 500 is the time between the animations. hope this helps, ricardo On Sep 22, 11:4

[jQuery] Re: A better way to animate this list..?

2008-09-22 Thread ricardobeat
This works, but there must be a better way (without using a global var). fade = function(){ $(this).next().fadeIn(500,fade); }; $('#ul.menu li:first-child').fadeIn(500,fade); On Sep 22, 5:34 pm, PaulC <[EMAIL PROTECTED]> wrote: > I'm new to jQuery so be gentle!! > > I have a menu list, and

[jQuery] Re: IE ignores event load()

2008-09-22 Thread ricardobeat
Is your XHTML mark-up valid? (assuming you're writing XHTML) That may affect the events behaviour. On Sep 22, 3:42 pm, Martynas Brijunas <[EMAIL PROTECTED]> wrote: > Hi MorningZ, > > > $(window).load(function() { > >      $("img.thumb").addClass("visible"); > > > }); > > > will do what you are af

[jQuery] Re: Referencing elements with 2 or more classes and no Id

2008-09-22 Thread Karl Rudd
Remember that jQuery uses CSS syntax for selectors. So, just like in CSS to select a element with a particular class you add a "." to the front of the class name. In this case: $('div.b-visibleUrl-short') Karl Rudd On Tue, Sep 23, 2008 at 11:25 AM, Tester <[EMAIL PROTECTED]> wrote: > > My co

[jQuery] Opacity Problem with ie6

2008-09-22 Thread donkeyotay
Hello, I'm writing a jQuery slideshow (I know...I could get a plugin) and I'm having a problem with Internet Exploder 6: the left and right arrows make the background images disappear when the opacity of the arrow images is 0. Works in browsers, but not in IE6 (which as we all know, is really just

[jQuery] Troubleshooting selectors

2008-09-22 Thread owen
This looks right to me, but isn't working like I think it should. $("#headera #headerright a:not([EMAIL PROTECTED])").click(function(){ window.open(this.href); return false; }); Any link inside div#headerright inside div#headera which doesn't targe

[jQuery] [autocomplete] HTTPS IE 6 Security Error

2008-09-22 Thread Phillip
I am having trouble with a type-ahead suggest ajax call tripping the infamous IE 6 error (http://support.microsoft.com/default.aspx? scid=kb;en-us;261188) on an HTTPS connection to my app. IE 6 says: "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?"

[jQuery] Re: missing ) after argument list error

2008-09-22 Thread Ryura
Well, what's the rest of your code? The snippet you've provided is fine, so there must be an issue with another code. On Sep 22, 6:59 pm, switch13 <[EMAIL PROTECTED]> wrote: > Can anyone tell my why this might not work in a separate .js file but > it does work from the firebug debugger? > > On Se

[jQuery] Get Lightbox and Innerfade plugins work together

2008-09-22 Thread aminho
Hi all, I'm working on a website with lots of pictures. A part of it are displayed using the http://medienfreunde.com/lab/innerfade/ Innerfade plugin , and the reste are displayed using http://www.huddletogether.com/projects/lightbox2/ Lightbox . The problem is that whenever i try to use both

[jQuery] Referencing elements with 2 or more classes and no Id

2008-09-22 Thread Tester
My code looks like this: Title www.learningjquery.com www.learningjquery.com/ 2007/02/ I can't modify HTML and need to access elements "b-visibleUrl-short." Tried: - $('[EMAIL PROTECTED]') and - $("div[class$=

[jQuery] 2 plugins - coda slider effect & lavalamp effect

2008-09-22 Thread redcirce
Hi there. I'm having problems getting these two effects to work on a page together. I've tried them in isolation of each other and they work fine, but on the same page, it's not happening. Here is a test page to see: http://www.donina.com/help/ Here is the link to the coda slider effect: ht

[jQuery] Re: superfish image buttons

2008-09-22 Thread Joel Birch
Hi Colin, If you still need help with this (sorry for my very late response) could you provide a link to your attempt so we can hone in on where you have gone wrong? Thanks. Joel Birch.

[jQuery] Re: superfish and lightbox dont work together

2008-09-22 Thread Joel Birch
You need to look into how to use jQuery with other libraries: http://docs.jquery.com/Using_jQuery_with_Other_Libraries That link should tell you everything you need to know to fix your problem' Joel Birch.

[jQuery] Re: Superfish menu activate on click

2008-09-22 Thread Joel Birch
Thanks so much for your patch. I'll be sure to have a good luck at it when I get to adding this functionality to Superfish. Cheers Joel Birch.

[jQuery] Re: Superfish IE 6

2008-09-22 Thread Joel Birch
Sounds like a bug in Supersubs, which is to be expected as it is beta and is in need of some love. I have heard of this problem and it's on the list of things to sort out. Joel Birch.

[jQuery] Re: Superfish - Image border and IE6

2008-09-22 Thread Joel Birch
Thanks for the feedback. The Supersubs plugin is still in beta phase so clues as to when the font-size calculation (which is needed to to calculate the dynamic width) fails are much appreciated. I hope to get chance to get back to debugging Supersubs at some point in the future. Sorry I can't help

[jQuery] Re: Getting Superfish menus to overlap in IE

2008-09-22 Thread Joel Birch
Your solution for fixing this incarnation of the IE z-index bug is actually the only one I have ever come across, so whilst it is hacky, it's probably as good as you are going to get. I guess a nifty bit of jQuery could make applying the z-indexes easier and keep the source HTML clean. If anyone w

[jQuery] Re: superfish: advice on using jquery.corners.js plugin

2008-09-22 Thread Joel Birch
Hello, This does seem fairly ambitious considering that menu CSS is quite complicated and the corners plugin alters the layout of elements in various ways also. Could you provide a working example so we can use Firebug to analyse what issues you are running into exactly? Joel Birch.

[jQuery] Re: superfish align navbar to the right

2008-09-22 Thread Joel Birch
Hello, I haven't done this myself, although an upcoming job looks like it will require it, so I may have a solution sometime in the future. I imagine the only problem will be that floating items to the right will reverse the order of the submenu items considering that people will still read them

[jQuery] Re: how to use Current of superfish

2008-09-22 Thread Joel Birch
Hello again, If you provide a working example I'll have a look. That said, maybe it's worth looking into why the "current class doesn't work". It's probably better to use existing, proven solutions. Cheers Joel Birch.

[jQuery] Re: Superfish image buttons for main menu items only

2008-09-22 Thread Joel Birch
This sort of thing requires a good knowledge of CSS and although Superfish is well suited for powering these menus, it is out of the scope of the plugin to implement this for you. Here is an example of something similar, whereby background images are swapped to provide tabs with 'hover' and 'curre

[jQuery] Re: Superfish - 1:colors, 2:overlap, 3:animation removal 4:navbar spacing

2008-09-22 Thread Joel Birch
Hello, Sorry for the delayed response - I've been snowed under. 1. I guess you will have to apply an id to the top level li for each submenu in the HTML. Then apply CSS to colourise the descendants as required. 2. If you do this you will run into the IE z-index bug. The only solution I have hea

[jQuery] pass inputed text to value attribute (using tablesorter): a simple way

2008-09-22 Thread claudes
i need to pass user entered text (which will be a number 1-10) to the value of the . i'm using tablesorter plugin, so i need the data to be passed automagically/immediately so that users can sort the column: Order Stacks any help much appreciated. thanks here is how my code set up:

[jQuery] Re: superfish menu only drops down

2008-09-22 Thread Joel Birch
Try changing the CSS where it sets the 'top' property on hover, to 'bottom'. Joel Birch.

[jQuery] Re: html for other examples (Bglframe, vertical style, nav-bar style and with Supersubs)

2008-09-22 Thread Joel Birch
Hi Elvis! Check out the source code of the documentation page. I know it can be confusing with it all lumped in together, but when you find the HTML for the various menus you will see that there is nothing to it. If you link to all the CSS files supplied in the zip, then making the various menus

[jQuery] Re: Superfish menu - flash of unstyled list before load

2008-09-22 Thread Joel Birch
Hi Terry, As a rule, you should always put your CSS before your JavaScript in the source order. This avoids the FOUC problems. Joel Birch.

[jQuery] Re: Superfish navbar wrapping problem in IE6 & Firefox

2008-09-22 Thread Joel Birch
Hi Ashley, You may need to design around your issues. That sounds like a lot of nav items for this type of menu so you are bound to run into width problems. The navbar style of menu is not really intended to be designed in such a way that it requires items to wrap onto subsequent rows. 1. This s

[jQuery] Re: Is anyone using jQuery + Jaxer?

2008-09-22 Thread chris thatcher
I really think it's just a little ahead of it's time. I dont get too much time to tinker but found myself spending too much time figuring out how to use the IDE they develop instead of just coding with it. If I have a second chance I'll go straight to the server and ignore the development tools.

[jQuery] Re: Superfish and wordpress - menus show up only on first page...?

2008-09-22 Thread Joel Birch
Hello, Looks like you have sorted out the problem as it seems to work fine for me. Joel Birch.

[jQuery] Re: superfish style current top

2008-09-22 Thread Joel Birch
Hello, In the original superfish-navbar.css file there is a rule like this, which you seem to be missing: .sf-navbar li.current { background: #BDD2FF; } Joel Birch.

[jQuery] Re: Superfish (IE cleartype bug)

2008-09-22 Thread Joel Birch
2008/9/23 nicholasnet <[EMAIL PROTECTED]>: > > Sorry, for late reply. But this code did not worked in my case. I had > to stick with my code. > > > > > On Aug 18, 8:56 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: >> Hello, >> >> 'This' should do the job (pardon the pun): >> >> onShow: function(){ >

[jQuery] Re: Apply JQuery to HTML returned by AJAX function $.get()

2008-09-22 Thread Richard D. Worth
Here's some more info/options: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F - Richard On Mon, Sep 22, 2008 at 5:51 PM, Norris <[EMAIL PROTECTED]> wrote: > > I ran into the same thing. Livequery will be your savior. > > http://brandona

[jQuery] Re: missing ) after argument list error

2008-09-22 Thread Michael Geary
Do we get to see this mystery .js file? Gonna be hard to guess what's wrong otherwise. > From: switch13 > Can anyone tell my why this might not work in a separate .js > file but it does work from the firebug debugger? > ... > > > > I can't see why this wouldn't work: > > > > $('h1:contains("test

[jQuery] Is anyone using jQuery + Jaxer?

2008-09-22 Thread MorningZ
I've gotten so much to the point where I think "jQuery" for everything nowadays, I like the framework that much and really feel like I've got my programming and patterns down pat enough that I am faster/more- complete with anything I have been coding this year With that said, I'm *really* int

[jQuery] Re: ajax request with datatype:script

2008-09-22 Thread seo++
I am not getting an array, I am getting ids.js contents On Sep 22, 8:12 pm, FrenchiINLA <[EMAIL PROTECTED]> wrote: > inside of your success function success: function(data){} you should > refer to 'data' if you're getting back an array, you can refer to as > data[0][0] > > On Sep 21, 9:04 pm, "se

[jQuery] Re: missing ) after argument list error

2008-09-22 Thread switch13
Can anyone tell my why this might not work in a separate .js file but it does work from the firebug debugger? On Sep 19, 5:45 pm, switch13 <[EMAIL PROTECTED]> wrote: > FF2 and I also tried IE6. The class is not getting added. That error > is appearing in FireBug. Funny thing is, when I test it in

[jQuery] Re: using click() with $(event.target).is(something)

2008-09-22 Thread light-blue
I think Andy might be correct about the binding issue. Since I'm relatively new to jquery, I'm likely missing something basic. Below is code sample... // $Id$ // Global killswitch if (Drupal.jsEnabled) { $(document).ready(function(){ $('body').click(function(event) {

[jQuery] Re: $.modal() "Not a function" driving me crazy

2008-09-22 Thread JohnC
OK - I have it The modal was calling in an external HTML file that contained a reference to the jquery script. Clearly a no-no! John

[jQuery] Re: Apply JQuery to HTML returned by AJAX function $.get()

2008-09-22 Thread Norris
I ran into the same thing. Livequery will be your savior. http://brandonaaron.net/docs/livequery/ On Sep 22, 4:02 pm, yanbozey <[EMAIL PROTECTED]> wrote: > This is a problem that I can solve with callbacks, but I dont know if > there is another way to do this.. > > Lets say that I have this

[jQuery] Re: jScrollPane and fadeIn

2008-09-22 Thread RitchieTheBrit
It seems that there is some issues with this under Internet Explorer. The DIVs load fine, but the text is missing from the scroll pane, and there is no actual slider (although the scroll track is present). It's a bit late for me to look into it now, but if look at the above page using FF, it rend

[jQuery] Shadowbox and AJAX

2008-09-22 Thread Ruby
I am trying to make a page that is using the ajax call on an XML file. The trouble I am having is trying to get shadowbox to work. I need some help please. Here is the code so far