[jQuery] Documentation on $('#foo')[0] or $('#foo').get(0) ??

2007-08-15 Thread pd
Hi All I've been hacking with jQuery on and off lately and I've now hit the annoying problem of not being able to access simple DOM 0 properties unless, apparently, using either of the following syntaxes: $('#foo')[0] $('#foo').get(0) Eventually after scratching my head each time, I've found

[jQuery] Re: What is wrong with this code?

2007-08-15 Thread Tane Piper
Yes, it's current planned in 1.2 which should be out in less than a month. Ganesh has also working on his LavaLamp plugin that provides an animation stop to the menu. To be honest it's one of these things that probably should have been in before now, but people are only starting to see that's

[jQuery] Re: Documentation on $('#foo')[0] or $('#foo').get(0) ??

2007-08-15 Thread Erik Beeson
var a = $(...); var b = a.length; a.XXX(); var c = a.get(0); Now, 'a' is a jQuery object that contains all of the elements that matched the selector. 'b' is the number of elements found. The third line is calling a jQuery function or plugin on the jQuery object that is wrapping the selected

[jQuery] Re: How do I bind this into the DOM?

2007-08-15 Thread Erik Beeson
You may want to return false; at the end of your click handler function that you bind to #pendingUsers a so that the link won't be followed. --Erik On 8/14/07, Steve Finkelstein [EMAIL PROTECTED] wrote: Hi all, This is a rather complicated issue, for a novice at least. I have HTML that

[jQuery] Re: jQuery for JavaScript programmers

2007-08-15 Thread Tane Piper
Very clear and concise article - it should get linked to on the documention page as a good beginners tutorial. On 15/08/07, Erik Beeson [EMAIL PROTECTED] wrote: Here's a really nice jQuery introduction that starts at the beginning and goes all the way through plugin development. It looks

[jQuery] Re: jQuery for JavaScript programmers

2007-08-15 Thread Ganeshji Marwaha
+1 - to linking this from the jquery site... -GTG On 8/15/07, Tane Piper [EMAIL PROTECTED] wrote: Very clear and concise article - it should get linked to on the documention page as a good beginners tutorial. On 15/08/07, Erik Beeson [EMAIL PROTECTED] wrote: Here's a really nice jQuery

[jQuery] Re: jQuery for JavaScript programmers

2007-08-15 Thread Tane Piper
Done On 8/15/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: +1 - to linking this from the jquery site... -GTG On 8/15/07, Tane Piper [EMAIL PROTECTED] wrote: Very clear and concise article - it should get linked to on the documention page as a good beginners tutorial. On

[jQuery] Re: How to test if plugin X is loaded ?

2007-08-15 Thread xavier
Thanks, didn't search the doc at the right place (was looking into core, that's under ajax). Why would you question if I really want to do that ? What would be the reason/risk of doing it ? X+ On Aug 15, 1:09 am, Erik Beeson [EMAIL PROTECTED] wrote: I question whether or not you really want

[jQuery] serverCookieJar, thoughts please

2007-08-15 Thread James Dempster
after Dan G. Switzer, II mentioned here http://groups.google.com/group/jquery-en/browse_frm/thread/cf786440e6154366/16e79411ae8b118d#16e79411ae8b118d regarding cookies being sent with every request and the 4KB limit it got me thinking, maybe store this on the server and make one request for it

[jQuery] Tweaks to jCarouselLite

2007-08-15 Thread Kelvin Luck
Hi, I've just tried to implement jCarouselLite [1] on a project I'm working on. Nice plugin - perfect for my needs of a lightweight carousel for this project :) But I came across a couple of problems. For some reason, when I set circular to false the carousel stopped animating for me. Not

[jQuery] Re: Tabs not working

2007-08-15 Thread Klaus Hartl
Eridius wrote: I am trying to use the Tabs plugin but it is not really working. her eis my demo: http://www.apex-wowguild.com/dev It work when you first click on the click but when you go back to a link, it just does not shouw anything. I am just using .tabs() and the html looks good to

[jQuery] Re: Tabs not working

2007-08-15 Thread Stephan Beal
On Aug 15, 1:12 pm, Klaus Hartl [EMAIL PROTECTED] wrote: I really can't see any reason why it shouldn't work... It seems that the problem has something to do with this: Before clicking a tab: div id=one class=tabs-container tabs-hideTEST/div div id=two class=tabs-containerTEST/div After

[jQuery] Draggables help

2007-08-15 Thread Gordon
As I just can't track down a javascript slider that can cope with two handles satisfactorially, I am trying to implement my own using just the Draggable functionality of the interface library. I need to make a slider for selecting a minimum and maximum limits of a range of values that: * cope

[jQuery] Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Neil
Hi there. I posted a bug concerning modals not masking the whole page with jQuery on the Ext forum. Jack Slocum has responded saying The problem was reported a while back to jQuery. It has to do with viewport/document size not returning the largest value. If the document height is smaller than

[jQuery] Selecting the current (this) dt on a collapsible menu

2007-08-15 Thread jorgeBadaBing
I adapted John's example of a collapsible menu but have a problem selecting the current dt. John's example can be found at: http://jquery.com/files/demo/dl-done.html I pretty much has this so far: pre script $(document).ready(function(){ $(div#Kcleftnav

[jQuery] Re: Issue with .ajax incrementally submitting.

2007-08-15 Thread deepreel
Come on folks please someone enlighten me as to why each time this ajax is called the error, success functions are called (but the ajax itself is not executed) n times. The code below is in a click event. If I click once I get 1 error response, if I click a second time I will get 2 exec's of the

[jQuery] Re: display Please wait while waiting for a database query.

2007-08-15 Thread VS
Hello, I have a php web application and sometimes the database query will take a while to process results. Using JQuery, is it possible to display a Please wait message and then clear it when the database query completes ( the code comes out of an foreach condition ). Please let me know..

[jQuery] Interface slider - get value of multiple handles

2007-08-15 Thread Simpel
Hi there! so...I've been looking at the interface slider (http:// interface.eyecon.ro/demos/slider.html) I'd like to use two horizontal sliders but how do I get the current value for them, the onSlide function only seems to display the value for the slider that was changed last, I wan't to be

[jQuery] Re: Submit form via Ajax

2007-08-15 Thread Maggi
Mike Alsup, you are my hero! :) On Aug 14, 1:19 pm, Mike Alsup [EMAIL PROTECTED] wrote: Magnus, Add tinyMCE.triggerSave(); before you iterate the inputs. Mike On 8/13/07, Maggi [EMAIL PROTECTED] wrote: Hey guys! I just wanted to check if someone knows how to implement TinyMCE

[jQuery] jQuery and UTF8

2007-08-15 Thread barophobia
Hello, I've got some Japanese text in my MySQL database that shows up correctly through phpMyAdmin as well as when it is loaded directly as HTML. However, when I load it through .load() it only shows up as question marks. Is there an obvious solution? I couldn't find any good info on jQuery

[jQuery] Re: input type=button / : which event is that?

2007-08-15 Thread lukek
Thanks Stephen. sorry about the typo. Surely this will only fire when I click on the button? What about when you hit enter while the button has focus? My question - badly put I know - was is there a rolled-into- one event name for when a button is clicked or selected with the keys?

[jQuery] Re: Dimensions 1.1 Released

2007-08-15 Thread Michael Schwarz [MVP]
Ok, so I have first to create a new variable, check if it is null or not, and then get the height? var h = 0; var ele = $(#id1:visible); if(ele.length 0) h = ele.outerHeight({margin: true}); if(h 0) $(#id2).height(h); instead I would like to write:

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread gradez28
Very nice! I have never bothered messing with compression before but now that I'm writing a rather large web app i need to make it as lean as possible. According to firebug I trimmed off 20% of my js size by piping all the JS through this! :)

[jQuery] Do my emails make it to the list?

2007-08-15 Thread barophobia
I can see my emails in the Gmail interface but it doesn't seem that they're actually making it to everyone else. Please respond (off list). Thanks, Chris.

[jQuery] Re: Help with autocomplete

2007-08-15 Thread SteelSoftware
Bump, Does anyone have any suggestions? On Aug 13, 10:17 pm, SteelSoftware [EMAIL PROTECTED] wrote: Hi all, I'm having some trouble with theautocompleteplugin from bassistance.de I'm doing a multiple-select box, original code copied from the example, but there are a couple of things that I

[jQuery] Help with this ajax call

2007-08-15 Thread deepreel
Folks, I'm missing something here but can't figure it. The following is inside a $('#xx').click event handler that inside a div that is originally hidden until a parent is clicked. The the revealed #xx button is clicked firing this: var dnsData=smode=clearnodehn=+hn+oldip=+ip+entry=+entry;

[jQuery] Re: Documentation on $('#foo')[0] or $('#foo').get(0) ??

2007-08-15 Thread gradez28
Just curious, how exactly do you expect to be able to access a 0 object? Are you thinking you can go: object.0.function()? If so, regardless of how cool jQuery is, when an array's key uses numerics, you simpy cannot access it as an object because objects must start with an alpha character. I dont

[jQuery] Re: Problem with selectors in Internet Exploter

2007-08-15 Thread David Garcia Ortega
Hi George, Thanks a lot for your answer, it did the trick!;) I finally used your recomendation: var iID_tutorial = $(this).siblings(input:checkbox).val(); and works perfectly in Firefox and IE7. Thanks again, David.

[jQuery] More (or less) than I bargained for

2007-08-15 Thread Aaron Mackley
I need some brief help. I am developing a web site and recently received a small app that builds a quiz and answers. Users who take the quiz receive a detailed answer based on their questions and the answers that I have recorded. The user submits a First Name and an email address so that the

[jQuery] Re: Tabs not working

2007-08-15 Thread Klaus Hartl
Eridius wrote: I am trying to use the Tabs plugin but it is not really working. her eis my demo: http://www.apex-wowguild.com/dev It work when you first click on the click but when you go back to a link, it just does not shouw anything. I am just using .tabs() and the html looks good to

[jQuery] Re: More (or less) than I bargained for

2007-08-15 Thread Alexandre Plennevaux
Aaron, you would have to use a serverside language such as php or ruby on rails in order to send an email. Javascript can't help you in this matter. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Mackley Sent: mercredi 15 août 2007 7:39

[jQuery] Re: Issue with .ajax incrementally submitting.

2007-08-15 Thread Mike Alsup
deepreel, There must be something you're not telling us. Please make a page available publicly if possible. Strip it down to the bare bones - just enough to exhibit the problem you're seeing. Mike On 8/15/07, deepreel [EMAIL PROTECTED] wrote: Come on folks please someone enlighten me as

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Brandon Aaron
I responded to the thread over on the ext forums. Here is what I said: The jQuery Dimensions plugin simply returns the document height or the window height. Returning the Math.max( $(document).height(), $(window).height() ); for $(document).height() would not return the actual document height.

[jQuery] Re: input type=button / : which event is that?

2007-08-15 Thread Mike Alsup
is there a rolled-into- one event name for when a button is clicked or selected with the keys? click is that event.

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread Brandon Aaron
Thanks for sharing this. Use the minified version instead of the packed version for even better file size savings. :) -- Brandon Aaron On 8/15/07, Stephan Beal [EMAIL PROTECTED] wrote: Hi, all! i'm working on re-designing the web site for my mother's company, which was horribly

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread Stephan Beal
On Aug 15, 2:33 pm, Brandon Aaron [EMAIL PROTECTED] wrote: Thanks for sharing this. Use the minified version instead of the packed version for even better file size savings. :) i experimented on that. i expected the new YUI minifier to give better compression (as it does on all of my plugins),

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread Brandon Aaron
Yeah, the packer does a good job initially but doesn't do a good job of getting gzipped. At least with my testing, I'm able to get a better file size by using the min version + gzip. jQuery is only around 11k doing it that way. -- Brandon Aaron On 8/15/07, Stephan Beal [EMAIL PROTECTED] wrote:

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread Joel Birch
On 8/15/07, Brandon Aaron [EMAIL PROTECTED] wrote: Yeah, the packer does a good job initially but doesn't do a good job of getting gzipped. At least with my testing, I'm able to get a better file size by using the min version + gzip. jQuery is only around 11k doing it that way. -- Brandon

[jQuery] Re: Do my emails make it to the list?

2007-08-15 Thread Andy Matthews
This one did. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of barophobia Sent: Wednesday, August 15, 2007 12:36 AM To: jquery-en@googlegroups.com Subject: [jQuery] Do my emails make it to the list? I can see my emails in the Gmail interface

[jQuery] Re: Draggables help

2007-08-15 Thread Gordon
After scratching my head over this for a while I thought maybe I would have more luck with plan B. I could give each handle its own div inside the slider div and allow each slider to slide only inside that region. by adjusting the width of the container divs I could get notched sliders that

[jQuery] Question about dynamic form input

2007-08-15 Thread Ruben S.
Hi, i have a classical input, for example : input type=text name=something id=something / I would like to show in a DIV the word ( letter by letter ) wroted in that input but in REAL TIME. For example if i write the word Internet, when i write the first letter I, simultaneously that letter

[jQuery] Re: Do my emails make it to the list?

2007-08-15 Thread Ty
No clue what's up with the G-Groups sometimes... I used to able to put in my profile name tzmedia and find all of my posts. It's almost impossible for me to find any of my posts since sometime in July, unless I can remember other keywords in the post. If you click reply to author, I think those

[jQuery] Re: Question about dynamic form input

2007-08-15 Thread Karl Swedberg
I wrote about a way to do this a while back on learningjquery.com. Perhaps that will help? http://www.learningjquery.com/2006/11/really-simple-live-comment-preview --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 15, 2007, at 9:34 AM, Ruben S.

[jQuery] Can someone assist me with this code issue?

2007-08-15 Thread deepreel
Folks, I'm missing something here but can't figure it. The following is inside a $('#xx').click event handler that inside a div that is originally hidden until a parent is clicked. The the revealed #xx button is clicked firing this: var dnsData=smode=clearnodehn=+hn+oldip=+ip+entry=+entry;

[jQuery] Re: Selecting the current (this) dt on a collapsible menu

2007-08-15 Thread jorgeBadaBing
Anyone has any thought on what I can do here? On Aug 14, 4:41 pm, jorgeBadaBing [EMAIL PROTECTED] wrote: I adapted John's example of a collapsible menu but have a problem selecting the current dt. John's example can be found at:http://jquery.com/files/demo/dl-done.html I pretty much has

[jQuery] Re: Text node selector?

2007-08-15 Thread Thomas Hooper
This bugs me too, I have no way of changing the text part of the following without effecting the image: pimg src=example.jpg / Example text/p After some digging around I found this thread, but also of interest, this plugin:

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread Stephan Beal
On Aug 15, 3:33 pm, xavier [EMAIL PROTECTED] wrote: This means that : 1) you assume all clients are able to deal with compressed pages No - PHP does that negotiation automatically (supposedly) and ignores the gzip if it thinks the client can't handle it. 2) your server is going to compress

[jQuery] Re: Checking for popup blocker when using click()

2007-08-15 Thread SeViR
The proper event for form submittion is: HTML: form id=myForm action= method=post input type=submit value=send /form JS: $(#myForm).submit(function(){ return false; //- if return false cancel submittion. By example for AJAX submittion. }); When you click in submit button, submit event

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread James Dempster
Before ob_gzhandler() actually sends compressed data, it determines what type of content encoding the browser will accept (gzip, deflate or none at all) and will return its output accordingly. From http://uk.php.net/ob_gzhandler On Aug 15, 2:33 pm, xavier [EMAIL PROTECTED] wrote: This means

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread Joel Birch
On 8/15/07, Stephan Beal [EMAIL PROTECTED] wrote: @Joel/Brandon: after more experimentation, i am getting better compression if i use the YUImin and ob_gzhandler. The difference is minimal compared to jsmin, but there is a difference. e.g. jquery 1.1.3.1: YUImin + gzip: 10896 bytes jsmin

[jQuery] Re: stupid dev tricks: gzipping jQuery without mod_deflate

2007-08-15 Thread xavier
This means that : 1) you assume all clients are able to deal with compressed pages 2) your server is going to compress it for each visitor. 3) the headers might or might not be properly dealing with its type. With mod_rewrite, they are nice tricks to have a compressed file and serve it instead

[jQuery] Re: display Please wait while waiting for a database query.

2007-08-15 Thread SeViR
In my pages I have this code. Automatically in AJAX calls, the message is shown and removed on AJAX call finalizes. HTML: div id=waitmessagePlease wait/div JS: //Configuration for AJAX calls $().ajaxSend(function(r,s){ $(#waitmessage).show(); }); $().ajaxStop(function(r,s){

[jQuery] Re: Do my emails make it to the list?

2007-08-15 Thread Robert O'Rourke
Ty wrote: No clue what's up with the G-Groups sometimes... I used to able to put in my profile name tzmedia and find all of my posts. It's almost impossible for me to find any of my posts since sometime in July, unless I can remember other keywords in the post. If you click reply to author, I

[jQuery] Re: Price levels and price breaks

2007-08-15 Thread Dan G. Switzer, II
I've done the following code in Coldfusion: cfset tilePrice = ListGetAt(productPricing.priceLevels,7) cfloop from=1 to=#ListLen(productPricing.priceBreaks)-1# index=i cfif quantity GTE ListGetAt(productPricing.priceBreaks,i) AND quantity LT ListGetAt(productPricing.priceBreaks,i+1)

[jQuery] Re: serverCookieJar, thoughts please

2007-08-15 Thread Dan G. Switzer, II
James, after Dan G. Switzer, II mentioned here http://groups.google.com/group/jquery- en/browse_frm/thread/cf786440e6154366/16e79411ae8b118d#16e79411ae8b118d regarding cookies being sent with every request and the 4KB limit it got me thinking, maybe store this on the server and make one request

[jQuery] Re: Do my emails make it to the list?

2007-08-15 Thread Jonathan Sharp
The reason there's a delay is that new members posts are moderated to fight spam. After x number of valid posts the moderation restriction is removed. I've removed this restriction for your account. Cheers, -js On 8/15/07, barophobia [EMAIL PROTECTED] wrote: I can see my emails in the Gmail

[jQuery] Some snippets for newbies, Part 1 of N

2007-08-15 Thread Stephan Beal
Hi, all! i'm working on rewriting the web site for my mother's business and i'm finally getting to integrate some jQuery in a production site. Unfortunately, i don't have a link to show anything (it's on an internal test server), but i wanted to share some of the tidbits with the n00bs in the

[jQuery] Re: Documentation on $('#foo')[0] or $('#foo').get(0) ??

2007-08-15 Thread Klaus Hartl
gradez28 wrote: Just curious, how exactly do you expect to be able to access a 0 object? Are you thinking you can go: object.0.function()? If so, regardless of how cool jQuery is, when an array's key uses numerics, you simpy cannot access it as an object because objects must start with an alpha

[jQuery] [ANNOUNCE] New jQuery Plugins Found

2007-08-15 Thread Rey Bango
AjaxRain has really been digging up some great plugins which I never see announced. Check these out: jQuery Image Strip http://blog.joshuaeichorn.com/archives/2007/01/11/jquery-image-strip/ jQuery Share It! http://www.joanpiedra.com/jquery/shareit/ jQuery Thumbs

[jQuery] Charting with jQuery?

2007-08-15 Thread Andy Matthews
I found a demo plugin here: http://www.reach1to1.com/sandbox/jquery/jqchart/ Looks like the last update was back in March. Does anyone know if this author has released anything newer than this. Alternately, are there any other charting plugins available that I might not know about?

[jQuery] Re: Tabs not working

2007-08-15 Thread Eridius
ok but now have another problem. when i set remote to true, the page keeps outputting itself over and over and over this crash. anyone else having issue with remote? Klaus Hartl wrote: Eridius wrote: I am trying to use the Tabs plugin but it is not really working. her eis my demo:

[jQuery] Re: Draggables help

2007-08-15 Thread Gordon
I realised in the end it's not really a problem because dragging the sliders trigger a resizing of the divs used to define the domain so the handles still remain grabbable when that part of the object is implemented. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/

[jQuery] Nice jQuery writeup

2007-08-15 Thread Priest, James (NIH/NIEHS) [C]
I didn't write this but saw it on Reddit while browsing at lunch: http://simonwillison.net/2007/Aug/15/jquery/ Jim

[jQuery] Re: Documentation on $('#foo')[0] or $('#foo').get(0) ??

2007-08-15 Thread Michael Geary
From: pd I've been hacking with jQuery on and off lately and I've now hit the annoying problem of not being able to access simple DOM 0 properties unless, apparently, using either of the following syntaxes: $('#foo')[0] $('#foo').get(0) pd, just to help clarify... The $()

[jQuery] Re: question about selectors

2007-08-15 Thread Glen Lipka
Ooops; sorry, i forgot one part. $(table).filter(table:lt(2)).find(tr td:first-child).css(border,3px solid red); Thanks John, first-child worked perfect. Glen On 8/15/07, Glen Lipka [EMAIL PROTECTED] wrote: Whipped up a demo http://www.commadot.com/jquery/selectors/tableCount.htm

[jQuery] Help with show/hide script

2007-08-15 Thread Priest, James (NIH/NIEHS) [C]
I'm skipping around the jQuery book (finally!) and working on converting an existing PDF manual into an HTML doc - I created the following script to show/hide a table of contents - and widen the page content using a toggle: script $(document).ready(function() { $('#mybutton').toggle(

[jQuery] Re: Documentation on $('#foo')[0] or $('#foo').get(0) ??

2007-08-15 Thread Michael Geary
From: Erik Beeson The [n] syntax is just a shortcut for .get(n):http://docs.jquery.com/Core#get.28_num_.29 From: Gordon I would imagine that the [] syntax would be a bit faster than the get() syntax, on the grounds that the former is simply addressing an array, whereas the latter

[jQuery] Re: question about selectors

2007-08-15 Thread John Resig
Try using :first-child instead of :first as :first will only ever return one element - whereas :first-child returns the first element in the 'row'. --John On 8/15/07, Guapo [EMAIL PROTECTED] wrote: there are three 3*3 tables. how to select the first cell in every row in the first two

[jQuery] Re: Updated Plugin: jQuery Timers. jQuery-oriented setTimeout/setInterval

2007-08-15 Thread Rey Bango
Blair, I have to say this was the best part of your plugin's docs: This plugin is licenced with the WTFPL. In short, do whatever the f**k you want with it. I laughed my butt off on that one. ;) Rey Blair Mitchelmore wrote: I released this a couple days ago but as was discussed on a

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Wizzud
Brandon, There is actually a slight problem in this particular scenario, because $(document).height() is returning 0. Ext's jquery adaptor IS maxing out window and document, but because document is returning 0, window height is being used as the greater. The only property I can find (using

[jQuery] About the author of the recent jQuery article - Please Read

2007-08-15 Thread Rey Bango
A couple of people have posted about the recent jQuery writeup by Simon Willison: http://simonwillison.net/2007/Aug/15/jquery/ Just to let everyone know, Simon Willison is a BIG WIG in the JavaScript community. He's been a long long time JS coder - blogging and releasing stuff back before

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Brandon Aaron
Ahh thanks Wizzud, I'll dig a little deeper. Thanks. -- Brandon Aaron On 8/15/07, Wizzud [EMAIL PROTECTED] wrote: Brandon, There is actually a slight problem in this particular scenario, because $(document).height() is returning 0. Ext's jquery adaptor IS maxing out window and document,

[jQuery] Re: Updated Plugin: jQuery Timers. jQuery-oriented setTimeout/setInterval

2007-08-15 Thread Tane Piper
I moved my code over to this licence recently but I'm hosted on google code. Google take the *very* strong view of licence prolifiration and warned me that if I didn't change back to one of the 8 licences that they have listed my project would be thrown off their site. So just a warning to

[jQuery] Re: About the author of the recent jQuery article - Please Read

2007-08-15 Thread Tane Piper
I noticed his site has a LOT of articles going back to 2002 (infact while looking at the article, I found one about OpenID that really helped me out). Fantastic to know we have friends in high places :) On 15/08/07, Rey Bango [EMAIL PROTECTED] wrote: A couple of people have posted about the

[jQuery] Re: Updated Plugin: jQuery Timers. jQuery-oriented setTimeout/setInterval

2007-08-15 Thread Sean Catchpole
Looks great Blair, excellent plugin. Thanks ~Sean

[jQuery] Re: How to test if plugin X is loaded ?

2007-08-15 Thread Erik Beeson
Because I think it would be much cleaner to just load the plugins that you want in the first place... --Erik On 8/15/07, xavier [EMAIL PROTECTED] wrote: Thanks, didn't search the doc at the right place (was looking into core, that's under ajax). Why would you question if I really want to

[jQuery] jQuery Form Plugin Repository: Compressed versions?

2007-08-15 Thread Pogo
Anyone know where to get the compressed version of this plugin: http://www.malsup.com/jquery/form/ ???

[jQuery] Re: display Please wait while waiting for a database query.

2007-08-15 Thread seedy
there is a great plugin that will do this for you called blockUI http://www.malsup.com/jquery/block/ VS YR wrote: Hello, I have a php web application and sometimes the database query will take a while to process results. Using JQuery, is it possible to display a Please wait

[jQuery] Re: Scrolling a div area without scrolling the page?

2007-08-15 Thread [EMAIL PROTECTED]
Hi, Thank you for your reply -- this solution presents itself exactly what I was looking for. Can't wait to use the jquery plug-in version -- do you have any idea when you might have that available? Matthew On Aug 14, 2:48 am, Kelvin Luck [EMAIL PROTECTED] wrote: Hi, You can do this if you

[jQuery] n00b question on $().clone

2007-08-15 Thread jenlindner
hi, how does one check for the presence of a clone? i need to drag copies of items from one list to another, then make the second list sortable. so, i've been using the revert:true inside the draggable and on drop creating a clone of each item - but, i want to prevent cloning the same item twice.

[jQuery] ORing selectors

2007-08-15 Thread rickdog
What is the cleanest way for ORing select results, e.g. returning all DIVs with id=X or class=Y?

[jQuery] Do my emails make it to the list?

2007-08-15 Thread Göran Törnquist
Is that the reason why I haven't had any responses to my post (and repost) about problems with 3D Carousel? /Göran The reason there's a delay is that new members posts are moderated to fight spam. After x number of valid posts the moderation restriction is removed. I've removed this

[jQuery] Re: Interface Drag/Drop Animation

2007-08-15 Thread Erik Beeson
This just came up a week ago, too. Here's the previous thread that offers a few solutions: http://groups.google.com/group/jquery-en/browse_thread/thread/44bb914d6c8718d2 --Erik On 8/15/07, Collin Allen [EMAIL PROTECTED] wrote: Quick question about the Interface Drag+Drop methods: When I

[jQuery] Re: Do my emails make it to the list?

2007-08-15 Thread Jonathan Sharp
No, probably not. Your messages are posted, just not immediately. We're pretty good at moderating posts quickly. Sometimes googlegroups seems a little lagged. Cheers, -js On 8/15/07, Göran Törnquist [EMAIL PROTECTED] wrote: Is that the reason why I haven't had any responses to my post (and

[jQuery] Re: jQuery Form Plugin Repository: Compressed versions?

2007-08-15 Thread Josh Nathanson
Anyone know where to get the compressed version of this plugin: http://www.malsup.com/jquery/form/ I asked that myself recently and got no reply. I ended up just packing it myself. If you don't have the Dean Edwards packer url, here it is: http://dean.edwards.name/packer/ -- Josh

[jQuery] Re: jQuery Form Plugin Repository: Compressed versions?

2007-08-15 Thread Rey Bango
If its not available, all you need to do is run it through Dean Edward's Packer http://dean.edwards.name/packer/ Rey... Pogo wrote: Anyone know where to get the compressed version of this plugin: http://www.malsup.com/jquery/form/ ???

[jQuery] Re: Selector question should be easy

2007-08-15 Thread Klaus Hartl
Mike Alsup wrote: You need to add the '#' for id selection. $(div :not('#myID')); Mike Mike, I'm not so sure about the white space before the colon, theoretically div :not(#myId) would select all children of div that do not have that particular id? --Klaus

[jQuery] Re: Updated Plugin: jQuery Timers. jQuery-oriented setTimeout/setInterval

2007-08-15 Thread Bernd Matzner
Hi, Google take the *very* strong view of licence prolifiration and warned me that if I didn't change back to one of the 8 licences that they have listed my project would be thrown off their site. Interesting. Doesn't the MIT license, which jQuery itself is licensed under, provide a max of

[jQuery] Re: Updated Plugin: jQuery Timers. jQuery-oriented setTimeout/setInterval

2007-08-15 Thread Jean
so sad =/ i liked so much that licence lol On 8/15/07, Tane Piper [EMAIL PROTECTED] wrote: I moved my code over to this licence recently but I'm hosted on google code. Google take the *very* strong view of licence prolifiration and warned me that if I didn't change back to one of the 8

[jQuery] Re: About the author of the recent jQuery article - Please Read

2007-08-15 Thread Klaus Hartl
Tane Piper wrote: I noticed his site has a LOT of articles going back to 2002 (infact while looking at the article, I found one about OpenID that really helped me out). Fantastic to know we have friends in high places :) From what I remember Simon Willison was the first to come up with a

[jQuery] Re: ORing selectors

2007-08-15 Thread Erik Beeson
For the record, that's documented here: http://docs.jquery.com/DOM/Traversing/Selectors#CSS_Selectors --Erik On 8/15/07, Erik Beeson [EMAIL PROTECTED] wrote: $('#X,.Y') --Erik On 8/15/07, rickdog [EMAIL PROTECTED] wrote: What is the cleanest way for ORing select results, e.g.

[jQuery] Re: n00b question on $().clone

2007-08-15 Thread Erik Beeson
Yes, I suggest you have unique IDs. Maybe something like (untested): olli id=item1.../lili id=item2.../li/ol Then on drop do something like: var newId = 'sort_list_' + drag.id; if($('#' + newId).length == 0) { // doesn't exist in this list yet $(drag).clone().attr('id', newId).appendTo(this);

[jQuery] Re: ORing selectors

2007-08-15 Thread Matt Stith
I would do something like $(#X).add(.Y); On 8/15/07, rickdog [EMAIL PROTECTED] wrote: What is the cleanest way for ORing select results, e.g. returning all DIVs with id=X or class=Y?

[jQuery] Re: ORing selectors

2007-08-15 Thread Erik Beeson
$('#X,.Y') --Erik On 8/15/07, rickdog [EMAIL PROTECTED] wrote: What is the cleanest way for ORing select results, e.g. returning all DIVs with id=X or class=Y?

[jQuery] Re: ORing selectors

2007-08-15 Thread Klaus Hartl
Matt Stith wrote: I would do something like $(#X).add(.Y); Just group the selectors: $('#X, .Y') --Klaus

[jQuery] Re: Interface slider - get value of multiple handles

2007-08-15 Thread Geoffrey Knutzen
I don't think you can get both values using onSlide(). You need to keep track of both values somewhere else and update those values as you slide. It gets tricky when the sliders cross, but you can work through it -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: About the author of the recent jQuery article - Please Read

2007-08-15 Thread Mike Alsup
Indeed. behavior.js was based on Simon's work and I loved that piece of code. It's what I used before jQuery. Mike From what I remember Simon Willison was the first to come up with a documentGetElementsBySelector function... he could be seen as jQuery's ancestor :-)

[jQuery] Re: Selector question should be easy

2007-08-15 Thread Klaus Hartl
Mitch wrote: Does anyone have a way to select all divs except one with a specific ID? I want something like $(* :not(myID)).click or $(div :not(myID)).click I have tried :not but have not been able to get it to work on IDs, seems that it just works on elements. thanks Mitch Try

[jQuery] Re: Selector question should be easy

2007-08-15 Thread Mike Alsup
You need to add the '#' for id selection. $(div :not('#myID')); Mike On 8/15/07, Mitch [EMAIL PROTECTED] wrote: Does anyone have a way to select all divs except one with a specific ID? I want something like $(* :not(myID)).click or $(div :not(myID)).click I have tried :not but

[jQuery] Re: Tweaks to jCarouselLite

2007-08-15 Thread Ganeshji Marwaha
Hi Kelvin, The link that you have posted for the modified version of jCarouselLite and for the patch is not reachable. The server is timing out i guess. I would really like to take a look at the changes and the page in which it wasn't working. This will help me fix the plugin for everyones

  1   2   >