[jQuery] "This will cause an infinite loop. Aborting." on carousels that are initialized as hidden

2009-08-25 Thread Nicholas
To see the issue: Create a horizontal carousel inside a display: none container. Make sure it has zero margins if you want to see the issue in browsers other than Safari. Don't worry about the zero margins in Safari, it'll break anyway. The pos method will check the dimensions of the elements in

[jQuery] Re: Dynamically created Modal using the Dialog method

2009-07-14 Thread Nicholas Stark
test On Tue, Jul 14, 2009 at 1:12 PM, Nick wrote: > Anyone: I cant seem to get this to work. If I pass "modal:true" in > as a variable it doesn't work. Anyone have any idea what is causing > it to break? > > === Stark Working Code == > var modal = modal; > var content = true; >

[jQuery] Re: IE Problem Animating opacity on a Alpha PNG

2009-03-04 Thread nicholas
Hi! I also have the same problem on IE7 when the page loads it seems that everything is alright but when the .animate() runs it keeps the 100% transparency and loses the rest of alpha 0-99% transparency.. It is very strange.. I don't know if its only IE bug or also jQuery's .animate() implementati

[jQuery] Re: IE Reports 0 children()

2009-01-26 Thread Nicholas
Got it!! if(jQuery.browser.msie){ var doc = new ActiveXObject("MSXML2.DOMDocument.4.0"); doc.loadXML(xml) alert(jQuery("letter", doc).children().length); } On Jan 26, 1:39 pm, Nicholas wrote: > FF works fin

[jQuery] IE Reports 0 children()

2009-01-26 Thread Nicholas
FF works fine, IE however reports 0 children() and I am finding it difficult to solve. Example XML retrieve from $.get: text text text The code: jQuery.get("process.asp", {job:"getLetter", letterID:letterName, type:"xml"}, function(xml){ alert(jQuery(xml).children().lengt

[jQuery] Re: Recursion issue with nested lists.

2009-01-26 Thread Nicholas
Beautiful! Works like a charm! Thanks again! On Jan 26, 8:20 am, Nicholas wrote: > Thanks Rob & Karl. > > Karl, excellent plugin! I think this is exactly what I need to get > around the default text() function. > > Thanks a million! > Nick > > On Jan 24, 5:35 am,

[jQuery] Re: Recursion issue with nested lists.

2009-01-26 Thread Nicholas
Thanks Rob & Karl. Karl, excellent plugin! I think this is exactly what I need to get around the default text() function. Thanks a million! Nick On Jan 24, 5:35 am, Karl Swedberg wrote: > Oh, rats. Sorry about that, Rob. On both counts.  Yeah, meant to reply   > to the OP. And I inadvertently

[jQuery] Recursion issue with nested lists.

2009-01-23 Thread Nicholas
For a short summary on my issue, all that remains is the text() function returning the string of all the node values under the one i'm currently working with. This is by design, but I don't want it to do this and for the life of me cannot discover a way to exclude all the child nodes from text()!.

[jQuery] Re: Select links that end in .png, .jpg or .gif

2009-01-17 Thread Nicholas
Thank you very much guys, worked like a charm. I once posted a question in the Adsense group and got a reply in 3 days (that didn't helped a bit). Here I've got a response in 20 minutes. :) Keep up the good work!

[jQuery] Select links that end in .png, .jpg or .gif

2009-01-17 Thread Nicholas
the above in order to select all the links that point to images (png,jpg,gif)? Thank you, Nicholas