[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Jörn Zaefferer
Pops schrieb: 3) If a compatibility module is required, and is considered important for 1 and 2, then this module should be transparent and MUST be part of the package. Not buried in release notes. 4) If a framework is in FLUX (not stable,. it should be CLEARLY labeled in the web site) so that

[jQuery] YAAB - Yet Another API Browser

2007-09-12 Thread Glen Lipka
This has been an idea of mine for a long time, but I never got around to it. I tried to finish it yesterday and today and couldn't. Long To-Do list on the right http://www.commadot.com/jquery/experiments/api/ Would love thoughts and advice. The code is pretty procedural and ugly. Does the curr

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Pops
On Sep 12, 11:13 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > On 9/12/07, Pops <[EMAIL PROTECTED]> wrote: > > IMO, whatever excuse there is, this pattern of showing a lack of > > backward compatibility, altered method behavior pattern with the > > updates is disturbing. > > Did you include

[jQuery] Re: Changes to $(selector).append

2007-09-12 Thread John Resig
Nothing in that area was changed in 1.2. Do you have some more information - possibly a demo? --John On 9/12/07, Bob Buffone <[EMAIL PROTECTED]> wrote: > > I'm using the $(selector) in 1.1.4 and it always returned an array > that you could change to and append. > > $("#myDiv").append("Some HTML"

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread John Resig
Did you remember to include the color animation plugin? --John On 9/12/07, Equand <[EMAIL PROTECTED]> wrote: > > i also had a no conflict upgrade and a little speed enhancement... > thought there's a problem with animate bg new feature... > > On Sep 12, 11:37 pm, polyrhythmic <[EMAIL PROTECTED]>

[jQuery] Re: Why is jQuery so slow?

2007-09-12 Thread John Resig
Yep: We actually do it right. Getting it to work correctly, cross browser, is phenomenally hard problem. We have to serialize the HTML string to DOM Nodes and then inject those directly. In your case, you'd be much better off building a single long HTML string then injecting that directly (using

[jQuery] Re: Waiting for Ajax Response

2007-09-12 Thread atomicnuke
Yeah, the response isn't being inserted using the $ ('#'+holder).html(msg); Usually firebug will tell me file not found or error from the file, but I'm getting nothing. I'll try your approach, see what happens.

[jQuery] Re: Waiting for Ajax Response

2007-09-12 Thread Pops
Hi, You are not clear on what the issue is, "waiting for Ajax response" Are you saying that you don't see anything? I'm working on a jQuery Ajax improvement and I can't wait to finish it up and get it releases as a plugin replacement. It resolves quite a few issues with the jQuery AJAX implemen

[jQuery] Re: Error: d[i].getElementsByTagName is not a function

2007-09-12 Thread Karl Swedberg
Here is how the XPath spec [1] describes it: //para selects all the para descendants of the document root and thus selects all para elements in the same document as the context node So, para, or in your case, hooks, would need to be a descendant of the document root. Since hooks is the do

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Brandon Aaron
On 9/12/07, Pops <[EMAIL PROTECTED]> wrote: > Alex, > > For what it is worth, I was able to confirm with three recent working > v1.1.4 treeview applications are now no longer working "the same" > when I simply change the

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Pops
Alex, For what it is worth, I was able to confirm with three recent working v1.1.4 treeview applications are now no longer working "the same" when I simply change the

[jQuery] Re: problem with spaces between html elements in ie

2007-09-12 Thread Benjamin Sterling
"I can only imagine the the blank space is being trimmed at some point." Wow, did I just state the obvious? Sorry, long day :) On 9/12/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: > > I have you tried appending a   instead of a blank space? I can only > imagine the the blank space is being

[jQuery] Re: problem with spaces between html elements in ie

2007-09-12 Thread Benjamin Sterling
I have you tried appending a   instead of a blank space? I can only imagine the the blank space is being trimmed at some point. On 9/12/07, mrsheep <[EMAIL PROTECTED]> wrote: > > > hi, i'm trying to load tags into a tagcloud dynamically doing > something like: > > ... > > > > tags= ["first"

[jQuery] Re: Using wrap() and then removing the wrapped element without removing the children

2007-09-12 Thread Richard D. Worth
On 9/12/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > On 9/12/07, Pyrolupus <[EMAIL PROTECTED]> wrote: > > > > > > Also, children() is not the right method. I should have originally > > said find('*'). children() is only for immediate descendants, while > > find('*') gets them all. > > > ch

[jQuery] Waiting for Ajax Response

2007-09-12 Thread atomicnuke
I have a small function outside of the onload method of the rest, so it'll only be loaded for a specific page. $('#apost :text').change(function(){ var entry = $(this).val(); var name = $(this).attr("id"); var holder = name+"holder"; $('#'+name).val(''); $.

[jQuery] [NEWS] jQuery-Powered QuePasa.com launches new beta

2007-09-12 Thread Rey Bango
jQuery-Powered QuePasa.com, the largest Latino social network, has launched a new beta version of their site. http://mashable.com/2007/09/12/quepasa-2/

[jQuery] Re: Using wrap() and then removing the wrapped element without removing the children

2007-09-12 Thread Richard D. Worth
On 9/12/07, Pyrolupus <[EMAIL PROTECTED]> wrote: > > > Also, children() is not the right method. I should have originally > said find('*'). children() is only for immediate descendants, while > find('*') gets them all. children() is fine here because as you get the immediate children and move/r

[jQuery] Re: Help for super dummy newbie

2007-09-12 Thread Glen Lipka
I have a whole mess of examples here: http://www.commadot.com/jquery They are single-serving scoops. Each one does one small thing. Do you have a place you can post examples that you work on? If you do then it's easy for us to look at them and help troubleshoot. Glen On 9/12/07, Lorenzo Jimenez

[jQuery] Re: yav plugin could be use Jorn's approach

2007-09-12 Thread Theodore Ni
On that website, Sevir mentions that the need to have each individual rule in Javascript is something that he found a problem in other validation packages, so I'm sure that using the title attribute was a specific design decision. That said, I'll be looking forward to seeing if Javascript rules wi

[jQuery] Why is jQuery so slow?

2007-09-12 Thread David Cramer
http://dpaste.com/hold/19433/ I hadn't noticed this until someone actually loaded up a dataset of 1k entries today and it made the browser croak. Firefox: DOM Creation Test * jQuery: 1.323 * Normal: 0.128 DOM Creation Test (with vars assigned) * jQuery: 1.026 * Normal: 0.128

[jQuery] Re: "No such interface supported" error in Internet Explorer

2007-09-12 Thread 0xCAFE
Here's what I tried. I have copied the code from my page and cleaned it up so I only have one form field and my ajax call. Here is the code : http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> Simple IE Ajax Test

[jQuery] Re: Using wrap() and then removing the wrapped element without removing the children

2007-09-12 Thread Pyrolupus
I may still be wrong: I was just describing my thought process. Best way to find out would to generate a large number of elements and then try both methods a few times. Also, children() is not the right method. I should have originally said find('*'). children() is only for immediate descenda

[jQuery] Changes to $(selector).append

2007-09-12 Thread Bob Buffone
I'm using the $(selector) in 1.1.4 and it always returned an array that you could change to and append. $("#myDiv").append("Some HTML"); This has seemed to change in 1.2, the $(selector) doesn't return an array so chaining the calls don't work. This is becuase the domManip function uses return

[jQuery] Re: Vibrator Plugin

2007-09-12 Thread JFSIII
> A fun plugin, with very few real world use cases. The quote and the work are both hysterical. John On Sep 12, 6:44 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Ben Nadel and I were playing with his latest experiment. Results: A fun > plugin, with very few real world use > cases.http://w

[jQuery] Re: Star rating plugin for 1.2?

2007-09-12 Thread Derek Gathright
Karl, thanks for the help. I've added those corrections along with a few others and I think it's 99% there. The only issue left is that I can't get the click methods to register. I'll continue playing around with it, but if anyone else has an idea as to what the issue may be, I've attached the j

[jQuery] Re: "No such interface supported" error in Internet Explorer

2007-09-12 Thread 0xCAFE
Thanks for the tip, but in the present case, I have these globally defined with a var declaration. Also, I think it would not give a "no such interface supported" error if variables were not declared. Any other ideas ? On Sep 7, 4:00 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > You need to def

[jQuery] problem with spaces between html elements in ie

2007-09-12 Thread mrsheep
hi, i'm trying to load tags into a tagcloud dynamically doing something like: ... tags= ["first", "second", "third"]; $.each (tags, function (i, textval) { var newTag= $("").text(textval).attr ("tagId", i); newTag.addClass ("tag"); $("#tagcloud").append(newTag).append(" "); });

[jQuery] Getting parsererror calling XML

2007-09-12 Thread kalath
Hey there -- first post on the board, but I see a lot of great and talented folks on here. Looking forward to interacting with all of you and I hope I get some knowledge transfer just from association... :-) I've been working on grabbing an XML doc using $.ajax. When I was working on it locally,

[jQuery] Re: .click() issue in FireFox

2007-09-12 Thread Jacob Stuart
Not sure I follow a 100% percent, but I'll make the assumption that you are wanting to execute the onclick event in these various rows when you click some other element on the page. With that said, maybe you should try: $('selector for element that gets clicked').click( function() { $('#Resul

[jQuery] When :"new tools to convert the documentation into the old XML format"

2007-09-12 Thread forresst
Hello all, Just one question : When : "new tools to convert the documentation into the old XML format". The new version of jQuery is great, but without doc xml clap, clap for the team Jquery. Forresst.

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Brook Davies
Hi John, Sorry, this post is fairly long, what I am doing was a bit tricky to explain. John, I know you are very busy and likely expected a short answer. Don't feel too obligated to read though all of this -- Well, actually, I was trying to get the markup/elements around another group of e

[jQuery] Help for super dummy newbie

2007-09-12 Thread Lorenzo Jimenez
Hi to all. I went to jquery web and tried the first tutorial, and I cannot make it work. Can anyone help this SDN person, aka me, and include in the reply a complete web page example so I can begin working with it? Thanks very very much. Regards, Lorenzo

[jQuery] Re: charset question

2007-09-12 Thread Equand
why not utf-8? On Sep 12, 4:46 am, Guoliang Cao <[EMAIL PROTECTED]> wrote: > Sorry for resurrecting this post. But I only get a chance to look at > this problem recently again. > > I'm hosting my library and game data files on a apache server. Is it > possible to customize ajax request to set req

[jQuery] yav plugin could be use Jorn's approach

2007-09-12 Thread Web Specialist
Yav jquery plugin( http://letmehaveblog.blogspot.com/2007/08/easy-client-side-web-forms-validations.html) is a very nice form validation. Really! But I'll want to suggest Sevir to, if possible, use Jorn's approach separating messages and rules. Yav works like: and Jorn's Form Validation plugin w

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Stephan Beal
On Sep 12, 6:07 pm, Alex <[EMAIL PROTECTED]> wrote: > New page with 1.2 min/gzip: > http://deadguy.reliccommunity.com/treeview_1.2.html This is beside the point, but i'd like to point out that the min/gzip label which is used on jquery.com is quite misleading. It implies that the code is alrea

[jQuery] Re: Dynamically loading more content

2007-09-12 Thread polyrhythmic
Short of actually writing the JScript, I can prototype it for you. 1. Create a function that adds list items depending on the the position of the last list item as compared to the viewable area. It will AJAX the list item information, preferably in JSON, and append the new list nodes (containing

[jQuery] $.ajax correctly works in all browsers except opera 8.5

2007-09-12 Thread Equand
in this site http://jppromo.ru ajax works completely on all browsers except opera 8.5 and it seems i can't find the source of a problem... i thought maybe opera 8.5 talks differently to href, but that's not the case... any clues? i think it's something simple for more experienced in opera works de

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Equand
i also had a no conflict upgrade and a little speed enhancement... thought there's a problem with animate bg new feature... On Sep 12, 11:37 pm, polyrhythmic <[EMAIL PROTECTED]> wrote: > I would like to report also a 100% no-conflict upgrade to 1.2! Thanks > for the hard work and the quick outpu

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Karl Swedberg
On Sep 12, 2007, at 5:50 PM, Glen Lipka wrote: Shouldn't it be child() and children() if we have parent() and parents()? I feel like we are mangling plural/singular rules. I don't think so. As Richard pointed out, you can have more than one direct child (one level down) but you can only e

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread polyrhythmic
Thanks for the quick replies, guys, I'll check out the fix ASAP. I'm assuming then that the new offset() covers for all supported browsers, and returns correct offset even with borders, margin, padding, etc.? jQuery.extend(true, "Awesome", "uber") ! Charles On Sep 12, 3:13 pm, "Brandon Aaron" <

[jQuery] Re: Vibrator Plugin

2007-09-12 Thread Equand
nice one... but what about not a random vibrations, but kinda synced? On Sep 13, 1:00 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Nice -- onclick it should alert "Oh yeah baby!" or something. > > - Original Message - > From: Glen Lipka > To: jquery-en@googlegroups.com > Sen

[jQuery] treeview plugin - store option doesn't work to remember which items were clicked

2007-09-12 Thread cfdvlpr
Here's what I've got got in the head section of my HTML: $(function(){ $("#pageNav").Treeview({speed: "fast", collapsed: true, store: true}); }); The store option doesn't appear to work at all for me. I do have the cookie plugin included. I don't get any error m

[jQuery] Re: Vibrator Plugin

2007-09-12 Thread Josh Nathanson
Nice -- onclick it should alert "Oh yeah baby!" or something. - Original Message - From: Glen Lipka To: jquery-en@googlegroups.com Sent: Wednesday, September 12, 2007 3:44 PM Subject: [jQuery] Vibrator Plugin Ben Nadel and I were playing with his latest experiment. Result

[jQuery] Vibrator Plugin

2007-09-12 Thread Glen Lipka
Ben Nadel and I were playing with his latest experiment. Results: A fun plugin, with very few real world use cases. http://www.commadot.com/jquery/vibrateCompare.php Enjoy! Thanks Ben! Glen

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Alex
Oops! Pasted the wrong url for the 1.2 version. Fixed, still having problems. New page with 1.2 min/gzip: http://deadguy.reliccommunity.com/treeview_1.2.html New page with 1.2 pack: http://deadguy.reliccommunity.com/treeview_1.2.pack.html On Sep 12, 10:19 am, Wizzud <[EMAIL PROTECTED]> wrot

[jQuery] Re: .ready(), Rhino and HttpUnit

2007-09-12 Thread Brandon Aaron
I think you might be able to use John's modified version of Rhino that acts like a browser. Where it is I'm not sure but it wasn't that long ago that he wrote it. -- Brandon Aaron On 9/12/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > Hi Rob, > > .ready() won't work in Rhino since there is no

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Brandon Aaron
In the transition of moving the new offset method into the core some bugs showed up. I've addressed these issues in the latest SVN of jQuery and they will be included in the upcoming jQuery 1.2.1. If you wouldn't mind grabbing the latest code from SVN and seeing if that works for your site, that wo

[jQuery] Re: .ready(), Rhino and HttpUnit

2007-09-12 Thread Sean Catchpole
Hi Rob, .ready() won't work in Rhino since there is no page to wait if it's ready. Everything else should work just fine. ~Sean On 9/12/07, Rob Desbois <[EMAIL PROTECTED]> wrote: > > Ok I've enlightened myself a little: I tried it with jQuery 1.2 and > discovered that the line number changed - i

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Glen Lipka
Shouldn't it be child() and children() if we have parent() and parents()? I feel like we are mangling plural/singular rules. Glen On 9/12/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > > On 9/12/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > > > I am confused. Why aren't the grandchildren be

[jQuery] Re: .stop() bug?

2007-09-12 Thread John Resig
If a show animation is stopped part way it's width will be at a specific pixel amount (like, 75px, for example). Thus, you'll need to move the width (and height and opacity) to it's final state before be. Possibly something like this might work: $('.join_reasons').css({height: 'auto', width: 'auto

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Richard D. Worth
On 9/12/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > I am confused. Why aren't the grandchildren being included in the call > for children()? > Using $("#content *") gets all the grandkids. I thought parents() gets > all the grandparents. Is children different? $("#content").children() is equ

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread John Resig
parent is to children as parents is to find("*") That's the rough equivalence in jQuery. --John On 9/12/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > I have been playing around with this. > http://www.commadot.com/jquery/selectorChildren.php > > It's interesting to me how text and html act diffe

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread John Resig
You'll have to ask Brandon, as .offset() is his baby. The core offset doesn't take any options (unlike the old one in Dimensions). However, this new offset is now the default way to check for offset - Brandon has removed it from Dimensions in favor of just maintaining the one in core. --John On

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread polyrhythmic
I would like to report also a 100% no-conflict upgrade to 1.2! Thanks for the hard work and the quick output. That being said, I can't get offset() to work like expected. I use Dimensions offset() on my site in a tricky situation involving floats, padding, margin, etc. I tried to switch into o

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Glen Lipka
I have been playing around with this. http://www.commadot.com/jquery/selectorChildren.php It's interesting to me how text and html act differently in terms of encoding and what actually shows up. It's also interesting to see how text nodes and a div are treated. I am confused. Why aren't the gra

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Stephan Beal
On Sep 12, 10:52 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > as John pointed out, html() returns innerHTML, not outer, so id="panelPreview"...> should only be expected if $('#content').html() were > called. Doh, of course. /me smacks forehead.

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Richard D. Worth
On 9/12/07, Stephan Beal <[EMAIL PROTECTED]> wrote: > > > On Sep 12, 9:20 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > > .html() only gets the innerHTML for the first matched element. > > i think that's what the OP is saying: the element's HTML he's getting > back is *not* that of the first child

[jQuery] Re: Older date selection in datapicker v2

2007-09-12 Thread [EMAIL PROTECTED]
Gday there You can always add... $(function() { $('.date- pick').datePicker({startDate:'01/01/2007',endDate:'31/12/2007'}); }); Tweaking Start and End dates as you need, or just include one of the options, for whatever suits your needs. On Sep 12, 2:42 pm, faraz <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: licensing for distribution

2007-09-12 Thread CodeMates
Thanks and good script BTW. On Sep 10, 1:03 pm, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Sep 10, 6:36 pm, CodeMates <[EMAIL PROTECTED]> wrote: > > > Do you offer any license for distributing jQuery? > > We have a community script in development and we wanted to add jQuery > > for the tabs des

[jQuery] jdMenu goes off the page

2007-09-12 Thread [EMAIL PROTECTED]
I am using jdMenu to implement new Add and Favorites menus for our application. However, the menu goes off the edge off the page. When I attempt to style it, the entire menu is moved. Is there a way to make the drop down portion stay right aligned with the page without moving the top-level elem

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread Stephan Beal
On Sep 12, 9:20 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > .html() only gets the innerHTML for the first matched element. i think that's what the OP is saying: the element's HTML he's getting back is *not* that of the first child element: > > > > > >

[jQuery] Need some help please - getting the name of the frame in which a page is currently loaded?

2007-09-12 Thread Andy Matthews
I have a site which uses a frameset. I need to use jQuery get the name of the frame in which a page is currently loaded. Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.deal

[jQuery] .stop() bug?

2007-09-12 Thread Eridius
here is my code: $('.heres_why').mouseover(function(event) { $('.join_reasons').css("left", (event.pageX - 235)); $('.join_reasons').stop().show("slow"); }); $('.heres_why').mouseout(function() { $('.join_reasons').stop().hide("slow"); }); Know if i mouseover and then mo

[jQuery] Re: NEWBIE Question: children() skips first element?

2007-09-12 Thread John Resig
.html() only gets the innerHTML for the first matched element. What are you trying to do with the children? --John On 9/12/07, Brook Davies <[EMAIL PROTECTED]> wrote: > > > Hello, > > I am trying to simply grab the children of a div. The markup is: > > > >

[jQuery] Re: Faster then innerHTML

2007-09-12 Thread John Resig
You're in luck! jQuery already pre-empties an element inside .html(). Calling .html() actually does: .empty().append("html string"); Although, there's a lot of other issues at play inside .append() in order to make it work cross browser, so those innerHTML benefits have probably be nullified in

[jQuery] Re: [Announce] WYMeditor 0.4 released

2007-09-12 Thread Jean-Francois Hovinne
Joan Piedra a écrit : > Hi Jean-Francois, > I like how this project is getting better and better, I'd love to see a > better support for the latest safari and Opera. Agreed. In fact we're currently working on the Safari implementation: http://trac.wymeditor.org/trac/browser/branches/0.5/wymeditor

[jQuery] Re: Faster then innerHTML

2007-09-12 Thread Sean Catchpole
Excellent, I'll look into this. ~Sean On 9/12/07, Felix Geisendörfer <[EMAIL PROTECTED]> wrote: > > Here is an interesting blog post that I came across: > > http://blog.stevenlevithan.com/archives/faster-than-innerhtml > > The synopsis basically is that one can gain dramatic speed improvements o

[jQuery] Re: Error: d[i].getElementsByTagName is not a function

2007-09-12 Thread Giant Jam Sandwich
Hi Karl, is the root element. I just assumed that the double forward slash, which is supposed to find an element from any position within the DOM, would naturally start at the root node. Is that a wrong assumption? Thanks. Brian On Sep 12, 9:03 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: jquery version of YUI Buttons?

2007-09-12 Thread Joan Piedra
Hmm.. this looks like "Nice JForms" or "jLook" to me. http://www.lexcat.ro/nicejforms/nicejforms.html http://envero.org/jlook/ On 9/12/07, owen <[EMAIL PROTECTED]> wrote: > > > I've searched without success, so I thought I'd ask here: Does anyone > know of a jquery version of YUI's Button compon

[jQuery] Faster then innerHTML

2007-09-12 Thread Felix Geisendörfer
Here is an interesting blog post that I came across: http://blog.stevenlevithan.com/archives/faster-than-innerhtml The synopsis basically is that one can gain dramatic speed improvements on setting innerHTML when removing items that are going to be overwritten using DOM methods before insertin

[jQuery] Re: New plugin - Lazy Load

2007-09-12 Thread Mika Tuupola
On Sep 7, 2007, at 3:58 PM, Erik Beeson wrote: Great stuff, as always. I'm looking over the source and had a couple of thoughts. It looks like you bind an event handler for each matching element, so 100 images will result in 100 event handlers firing on every scroll. That seems like it wou

[jQuery] Re: Using wrap() and then removing the wrapped element without removing the children

2007-09-12 Thread Joan Piedra
:O I'm not sure about it. But I thought it was faster to clone and then remove, than move it all. Thanks for taking your time to explain this. On 9/12/07, Pyrolupus <[EMAIL PROTECTED]> wrote: > > > On Sep 11, 7:06 pm, "Joan Piedra" <[EMAIL PROTECTED]> wrote: > > Hmm.. Can't you clone the nodes a

[jQuery] NEWBIE Question: children() skips first element?

2007-09-12 Thread Brook Davies
Hello, I am trying to simply grab the children of a div. The markup is: [Section/Panel Heading]

[jQuery] Re: [Announce] WYMeditor 0.4 released

2007-09-12 Thread Joan Piedra
Hi Jean-Francois, I like how this project is getting better and better, I'd love to see a better support for the latest safari and Opera. For Alexandre's idea, I'd suggest to wait until this sunday and take a look at the UI uploader plugin, maybe this could be a useful, to upload images and files

[jQuery] jquery version of YUI Buttons?

2007-09-12 Thread owen
I've searched without success, so I thought I'd ask here: Does anyone know of a jquery version of YUI's Button component? (http:// developer.yahoo.com/yui/button/) I'm not opposed in principle to using YUI, but it seems like it would be easier to not have to mix libraries. Thanks, Owen

[jQuery] Re: XSL Templating

2007-09-12 Thread Sean Catchpole
No, this is not built into jQuery. There is however a plugin that can do this for you. http://jquery.com/plugins/project/XSLT ~Sean On 9/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Is there an option to apply XSL stylesheets to XML recieved via > jQuery.ajax()? I have some templated

[jQuery] Re: Star rating plugin for 1.2?

2007-09-12 Thread Karl Swedberg
The .lt() and .eq() -- and .gt() -- methods were removed from 1.2. If you'd like to try to patch will stuckey's version, you could try the following: line 97: .slice(0,index).addClass('hover').end(); line 105: $stars.slice(0,averageIndex).addClass('on').end

[jQuery] Star rating plugin for 1.2?

2007-09-12 Thread Derek Gathright
I've been scouring the internet looking for a star rating plugin for the latest version of jQuery, but have been unsuccessful. I really like these, but they appear to be incompatible with any recent versions. http://sandbox.wilstuckey.com/jquery-ratings/ http://php.scripts.psu.edu/rja171/widgets/

[jQuery] Re: validate a form included via Ajax

2007-09-12 Thread Flesler
Sorry not actually, I never used live jquery but I know it-s good for those cases. I had a situation like yours some time ago, and I solved it with event delegation, binding to the click or submit event of the (popup) container. But I wasn't using Thickbox so I' not sure. I checked the plugin and

[jQuery] XSL Templating

2007-09-12 Thread [EMAIL PROTECTED]
Is there an option to apply XSL stylesheets to XML recieved via jQuery.ajax()? I have some templated xml which I'm loading but the stylesheets don't seem to be applied via an AJAX load. I always thought this was supposed to be done by the server, but I guess it's the browser...

[jQuery] Re: NSFW: [jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Felix Geisendörfer
Ah, yeah, sorry about that. Should have used [NSFW] but I thought the title and description would indicate that the content therein might be too racy for certain environments. And you also missed the [No save for coffee] warning as I almost spilled mine while reading this ; ). -- Felix ---

[jQuery] Re: NSFW: [jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Weaver, Scott
Ah, yeah, sorry about that. Should have used [NSFW] but I thought the title and description would indicate that the content therein might be too racy for certain environments. -scott -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Geary

[jQuery] NSFW: [jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Michael Geary
Be advised that Ben's post may not be entirely safe for work (or home either, depending on who is looking over your shoulder)... > Ben Nadel is a bit of a character and he just described > jQuery in a very unique way: > > http://www.bennadel.com/blog/949-jQuery-1-2-An-Unexpected-Surprise.htm >

[jQuery] Re: jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Wizzud
Your path to jquery-1.2.pack.js is returning a 404. Alex-337 wrote: > > > I've got a page that is a massive treeview, and when loading jQuery > 1.2 min&gzipped, the Treeview plugin seems to stop working. No errors > reported in Firebug, and I can't see deprecated functionality in the > plugin

[jQuery] SUSPECT: RE: [jQuery] Re: SUSPECT: RE: [jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Weaver, Scott
It's a long URL. The truncated portion is on the line below the actual link. -scott From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Wednesday, September 12, 2007 12:10 PM To: jquery-en@googlegroups.com Subject: [jQu

[jQuery] Re: SUSPECT: RE: [jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Glen Lipka
URL didnt work. :( Glen On 9/12/07, Weaver, Scott <[EMAIL PROTECTED]> wrote: > > > This is just to good to keep to ourselves, so I submitted it to Digg :D > > http://digg.com/programming/jQuery_1_2_Female_Masturbation_and_the_Vibra > tor_Dilemma > > -scott > > -Original Message- > From: jq

[jQuery] jQuery 1.2 seems to break the Treeview plugin

2007-09-12 Thread Alex
I've got a page that is a massive treeview, and when loading jQuery 1.2 min&gzipped, the Treeview plugin seems to stop working. No errors reported in Firebug, and I can't see deprecated functionality in the plugin. Original page with 1.1.4.1: http://deadguy.reliccommunity.com/treeview_1.1.4.1.

[jQuery] Re: Dynamically loading more content

2007-09-12 Thread Vikas
Bump. Thanks.

[jQuery] SUSPECT: RE: [jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Weaver, Scott
This is just to good to keep to ourselves, so I submitted it to Digg :D http://digg.com/programming/jQuery_1_2_Female_Masturbation_and_the_Vibra tor_Dilemma -scott -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, Septe

[jQuery] Re: Superfish plugin fix for jQ1.2

2007-09-12 Thread Joel Birch
On 9/12/07, Pyrolupus <[EMAIL PROTECTED]> wrote: > Wanted to highlight one of the other items in case you missed it: > > On Sep 11, 4:35 pm, sozzi <[EMAIL PROTECTED]> wrote: > > After spending 30 minutes ruling out all other possibilities and a few > > broken gt(0) etc.. > > Sounds like there'

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Web Specialist
Jörn, I know your great job in form validation plugin. Form Validation Plugin is awesome. Period! I'll waiting that improvements looking for better performance. Thanks! 2007/9/12, Jörn Zaefferer <[EMAIL PROTECTED]>: > > > Bernd Matzner schrieb: > > > >> I'm using Jorn's Form Validation in a mon

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Brandon Aaron
BTW ... the same functionality can now be achieved with jQuery 1.2 and the update .load() method. http://docs.jquery.com/Ajax/load#urldatacallback -- Brandon Aaron On 9/12/07, Priest, James (NIH/NIEHS) [C] <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Rey Bango [mailto:[

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Rey Bango
;) Priest, James (NIH/NIEHS) [C] wrote: -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] http://ajaxian.com/archives/purple-include-19 Rey... Web Specialist wrote: Hey Rey: what's "Purple Include"? Ha! And here I thought you made it up :) That looks really cool!

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Rey Bango [mailto:[EMAIL PROTECTED] > > http://ajaxian.com/archives/purple-include-19 > > Rey... > > Web Specialist wrote: > > Hey Rey: what's "Purple Include"? Ha! And here I thought you made it up :) That looks really cool! Jim

[jQuery] Re: bind validation to an ajax included form

2007-09-12 Thread Jörn Zaefferer
[EMAIL PROTECTED] schrieb: Anyone can help me? Keep in mind that the validate()-plugin-call "just" adds a submit-handler. Your attempts added the submit handler on submit, which doesn't work. Try adding some code below the form that selects the form and calls the validate plugin. -- Jörn

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread Jörn Zaefferer
Bernd Matzner schrieb: I'm using Jorn's Form Validation in a monster form. Using jQuery 1.2minified version returns all validation in =~ 16 sec. Using uncompressed version returns in 6 sec. Hi, somewhat unrelated to the thread: 6 or even 16 secs seem like an eternity. What would be the

[jQuery] [NEWS] I've never seen jQuery described quite like this before....

2007-09-12 Thread Rey Bango
Ben Nadel is a bit of a character and he just described jQuery in a very unique way: http://www.bennadel.com/blog/949-jQuery-1-2-An-Unexpected-Surprise.htm Rey...

[jQuery] Re: jQuery 1.2 - Serialize a form as JSON

2007-09-12 Thread Wizzud
Ticket #1600 already raised. Pyrolupus wrote: > > > In testing Chistoph's code, I encountered a separate but possibly > related issue: serialize() and serializeArray() are returning things > I did not expect for multiple selects. For the following form: > > > > Black

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread MikeR
Just to add real quick.. I also have not had ANY issues come up with 1.2 yet. Used the compatibility plugin & all is working phenomenally. Couldn't be happier. Thanks jQuery team! On Sep 11, 5:26 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > just wanted to report that i had absolutely n

[jQuery] Re: .ready(), Rhino and HttpUnit

2007-09-12 Thread Rob Desbois
Ok I've enlightened myself a little: I tried it with jQuery 1.2 and discovered that the line number changed - it's not a line number in httpUnit as I thought (understandably I think!) but in jQuery. In jQuery 1.2 it's line 1613 (but is reported as 1612), which is the else statement in this part of

  1   2   >