[jQuery] Re: LIVE jQuery

2007-12-31 Thread Ariel Flesler
I don't understand what you mean, could you explain some more? Ariel Flesler On Dec 29 2007, 3:04 am, coughlinsmyalias <[EMAIL PROTECTED]> wrote: > Hey all, I am wondering is it possible with jQuery or any other plugin > to have say real time results on a page. To do say see what other > changes

[jQuery] Re: First release of jQuery.Accessible

2007-12-31 Thread Ariel Flesler
Hi Jorn Thanks for taking time to check. >You should make the link to the demo more prominent.. What do you exactly mean? the plugin is hosted in jquery.com/plugins.. and the demo is linked from the project page. >About noscript: I'd assume that someone with JS disabled either.. The plugin, is a

[jQuery] Re: adding conditional to $("x")

2007-12-31 Thread Dave Methvin
> $(this).addClass("SML".charCodeAt(this.value.length%5)||"L"); Change charCodeAt to .charAt ... duh.

[jQuery] Re: adding conditional to $("x")

2007-12-31 Thread Dave Methvin
> if [EMAIL PROTECTED]() < 5 then .addClass('S') > if [EMAIL PROTECTED]() > 10 then .addClass('L') > else .addClass('M') > http://donkeyontheedge.com/jqtest/(I'm looking at this in Firefox) This version is sufficiently obscure that it will impress and astound your friends: $("input:submit").eac

[jQuery] Re: What license is the Cluetip plugin released under?

2007-12-31 Thread Karl Swedberg
Hi Chris, At the top of the jquery.cluetip.js file, I've placed the following lines: * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html Basically, it's licensed the same way as jQuery core. So, please f

[jQuery] Re: Advantages of jQuery

2007-12-31 Thread Shawn
1. jQuery does more than just Ajax. 2. It provides nice easy "one liners" to replace 10's or 100's of lines of code. 3. It's Ajax routines do not cause memory leaks (usually). Traditional Ajax techniques are more likely to. (closures, etc.) 4. It's more intuitive. (i.e. $("#myDiv").load("mypa

[jQuery] Re: adding conditional to $("x")

2007-12-31 Thread Shawn
the .val() method normally returns a string. So, the comparison is sorta like "5" > 5 - which is a little off. To be complete, you should parse out the number value you want: if (parseInt(this.val() ) > 5) { . . . } Or use parseFloat if you're after decimal values. This is one of those subtl

[jQuery] my new plugins

2007-12-31 Thread Eridius
Here is a demo of them http://www.kaizendigital.com/test/codereck_javascript.php Current these are the features: Tabs: load tab from content on page load content from remote page(ajax) with loading animation(going to be optional) add callback before and after tab loaded. Paginator: Basic, loa

[jQuery] my new plugins

2007-12-31 Thread Eridius
Here is a demo of them http://www.kaizendigital.com/test/codereck_javascript.php Current these are the features: Tabs: load tab from content on page load content from remote page(ajax) with loading animation(going to be optional) add callback before and after tab loaded. Paginator: Basic, loa

[jQuery] 1.2.2--strictly bug fixes and optimizations? Or have features been added?

2007-12-31 Thread [EMAIL PROTECTED]
Is 1.2.2 a cleaner 1.2.1? Or are there some new features as well? Is there a roadmap somewhere? What's next? 1.3 or 2.0?

[jQuery] Resizing Input fields on Window Resize?

2007-12-31 Thread Mike Schinkel
Hi all: I'm struggling with this one. I need the following, which I can't get to work because IE7 seems to have a bug where when you set the width of an field using CSS to a percentage it calculates based on the viewport and not the containing element. So I figured I'd add an IE fix like the f

[jQuery] Re: Fixed Table Headers Plugin - Need some help

2007-12-31 Thread Shawn
I'm making some progress on this. http://grover.open2space.com/files/dev/fixedheader/jquery.fixedTableHeader-0.03.js This revision cleans up some bugs and troubleshooting left-overs, as well as some needed enhancements. I Tested the library with my production table. This table is nasty to sa

[jQuery] Re: timing effects

2007-12-31 Thread [EMAIL PROTECTED]
oh yes! the ol' callback function... thanks for answering! On Dec 31, 12:41 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Dec 31, 2007, at 3:07 PM, [EMAIL PROTECTED] wrote: > > > > > How do I make the remove() occur only after the fadeOut() is finished? > > > $("someDiv").fadeOut(2000).remov

[jQuery] Re: Superfish IE6 Flicker

2007-12-31 Thread areikiera
Nevermind. the problem has been solved. I had been using the sfhover extension on all my pages, and I should've only used them on the pages with flash objects. Should be working great now. but if anyone sees otherwise, I'd appreciate a head's up! Happy new Year! On Dec 31, 1:09 pm, areiki

[jQuery] Re: Fixed Table Headers Plugin - Need some help

2007-12-31 Thread Shawn
Thanks for the encouragment. I have no choice - I *need* to make this work for one of my apps... But I only really need to make it work in IE7 and FF... I'll be testing it against a production table later today... Suni wrote: > If you manage to pull this off It will be amazing. AFAIK there i

[jQuery] What license is the Cluetip plugin released under?

2007-12-31 Thread Chris - Implied By Design
Hello, I am wondering if the cluetip plugin is re-distributable? I have built a wrapper for the Drupal CMS platform, and was wondering if I can included the cluetip files as part of the distribution. It requires a GPL or similar licensing. Thanks! Chris

[jQuery] Re: fade out gallery onload

2007-12-31 Thread Karl Swedberg
On Dec 31, 2007, at 1:16 PM, tetrix wrote: So, you want image 1 to be visible on page load, then fade out to reveal image 2; then, image 2 should fade out to reveal image 3? yes right this is what i want you want image 2 and 3 to fade in when they become visible yes do you want that

[jQuery] Re: Fixed Table Headers Plugin - Need some help

2007-12-31 Thread Suni
If you manage to pull this off It will be amazing. AFAIK there is no 100% working solution for all A-grade browsers so far. There are many different hacks and scripts (some rather tedious) but I've yet to see one that would work in FF,IE6,IE7 and Opera. I hope you find a way, though I'm rather s

[jQuery] Re: Advantages of jQuery

2007-12-31 Thread Eridius
not sure what "ajax tech" is unless you mean "ajax technology". if you mean ajax technology then well jQuery provide a few functions to make ajax a lot easier but jQuery also has a lot of other things to do with javascript like animation, dom selections, styling, and other things. Mohd Daslim

[jQuery] Re: form element inside div element don't effect by style:display attribute of div

2007-12-31 Thread Suni
Something else is wrong with your code. I copypasted your HTML directly and it works: nothing is shown.

[jQuery] Re: timing effects

2007-12-31 Thread Karl Swedberg
On Dec 31, 2007, at 3:07 PM, [EMAIL PROTECTED] wrote: How do I make the remove() occur only after the fadeOut() is finished? $("someDiv").fadeOut(2000).remove(); Hi Jason, Try this: $("someDiv").fadeOut(2000, function() { $(this).remove(); }); --Karl _ Karl Swedberg

[jQuery] timing effects

2007-12-31 Thread [EMAIL PROTECTED]
How do I make the remove() occur only after the fadeOut() is finished? $("someDiv").fadeOut(2000).remove();

[jQuery] Re: fade out gallery onload

2007-12-31 Thread tetrix
> So, you want image 1 to be visible on page load, then fade out to > reveal image 2; then, image 2 should fade out to reveal image 3? yes right this is what i want > you want image 2 and 3 to fade in when they become visible yes >do you want that to occur at the same time that the previous one

[jQuery] Re: Determining if a jQuery object is attached to an existing DOM

2007-12-31 Thread Eric Martin
Well, that explains why I couldn't find it =) The offsetParent doesn't seem to work for me in this case. I have a plugin that is trying to determine if the passed in content was attached to the DOM. What I ended up doing was checking object.parent().parent().size(). If it is > 0, it must have bee

[jQuery] Advantages of jQuery

2007-12-31 Thread Mohd Daslim Arif
Hi there., Season's Greetings., I very newbie to jQuery. May I Know what are the advantages of jQuery over ajax tech. Is it open a connection with the Server to Browser until the setted cookie info ? Can i able to develop my own function in that & integrate with it? Thanks., Daslim

[jQuery] Superfish IE6 Flicker

2007-12-31 Thread areikiera
Hi everybody, Happy Holidays! I've got a rather urgent problem. I'm launching a client's website tonight, and I've implemented Superfish. I had thought the problem was solved awhile ago, but it reappeared in IE6 when I was checking the site today. The webpage we're testing it on is www.sugarm

[jQuery] Looking for insight answers????

2007-12-31 Thread Square Box "__(^0^)__"
Most Forex traders loose money, don't be one of them Learn Forex for free here and get useful recommendation on Forex learning resources. http://www.forex.ibiz2u.com Sponsored ads link specially for : [:-: jquery-en@googlegroups.com :-:]

[jQuery] Re: Jquery Lightbox or Thickbox and Flickr?

2007-12-31 Thread bdee1
ok so actually i ended up tryign out the picasa web albums and it is really nice because it allows you to upload up to a gig or so of photos for free and it lets you change the order of them. so that solved the ordering problem. woo hoo. only reminign question is how to handle the captions. t

[jQuery] jquery newbie - why does this code not work?

2007-12-31 Thread X490812
I have a jsf application, and the rendered html has a radio button group that essentially looks like this : . . My Cases

[jQuery] Re: fade out gallery onload

2007-12-31 Thread Jeroen
On Dec 31, 2007 11:40 AM, tetrix <[EMAIL PROTECTED]> wrote: > > thank you but it doesnt work, your code shows a row of 3 images that > fade out at the same time; what i need is one image in place then this > image fades out to the second one and the third one: > > the document i need: > > > >

[jQuery] Re: adding conditional to $("x")

2007-12-31 Thread Kelvin Luck
Hi, Your demo page gives me an error in the firebug console: "missing ) after argument list". After a closer look I realised that's because you aren't wrapping the stuff you are passing into the ready call in a function block... Also, $this.val() will return the actual value of the input so

[jQuery] Re: adding conditional to $("x")

2007-12-31 Thread dug
Hi Kelvin, This looks really good. It's not working but this may be down to something really stupid on my part. I've put your code into an example to give an idea of what I'm trying to do: http://donkeyontheedge.com/jqtest/ (I'm looking at this in Firefox) Could it be that $this.val() doesn't

[jQuery] Re: fade out gallery onload

2007-12-31 Thread Karl Swedberg
On Dec 31, 2007, at 5:40 AM, tetrix wrote: thank you but it doesnt work, your code shows a row of 3 images that fade out at the same time; Then it actually DOES work -- at least for what we thought you were trying to do. ;-) from your earlier post: this code works but i would like to do

[jQuery] John Resig to write new book

2007-12-31 Thread Rey Bango
jQuery project founder John Resig is in the initial stages of starting a new book and he's looking for some feedback. Be sure to visit his blog posting for more details: http://ejohn.org/blog/untold-javascript-secrets/ Rey

[jQuery] Re: autosave textarea to cookie

2007-12-31 Thread pcdinh
Modern browser allow 4KB per cookie only. So autosave textarea is not possible at any time. On Dec 31, 10:30 am, Fayland Lam <[EMAIL PROTECTED]> wrote: > hmm, main idea here is autosave textarea. thanks any way. I already > got one. :) > > On Dec 31, 10:17 am, Jörn Zaefferer <[EMAIL PROTECTED]> w

[jQuery] Re: ajax callback issue

2007-12-31 Thread Shawn
See you switched to $.ajax... Your original problem is that you asked for the RESULTS of the after_load function. You need to pass the function reference. So your code would need to look like this: self.element.children('.cr_tab_content').load(id.substring(5), {}, self.options.after_load);

[jQuery] Re: fade out gallery onload

2007-12-31 Thread tetrix
thank you but it doesnt work, your code shows a row of 3 images that fade out at the same time; what i need is one image in place then this image fades out to the second one and the third one: the document i need: your code: On Dec 31, 3:12 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Looking for jquery dev for job?

2007-12-31 Thread yabado
Dangit! In my haste I mistyped my email address, doh! this is the correct one. mike -at- yabdab -dot- com If you emailed me in the passed, please do so again. I especially need someone good with forms , ajax and iframes (cross site). > Please contact me at mike -at- yadab -dot- com

[jQuery] Re: Determining if a jQuery object is attached to an existing DOM

2007-12-31 Thread Byron
Hi Eric, it appears mike changed the topic "Discussion subject changed to "Collecting id attributes for checked input?" by Mike Schinkel" i think you can use the offsetParent property to check if a node is a attached to the document. $('')[0].offsetParent === null; --Byron

[jQuery] Re: Can jQuery create an element then bind a hover function to it?

2007-12-31 Thread zarino
Hi Josh, Sorry for the late reply... but I finally got round to implementing your suggestion. Unfortunately, it doesn't seem to help. The action (SlideInUp) only happens once, on only one of the divs, and then mousing-out of it doesn't trigger the second half of the .hover function. Hovering over

[jQuery] form element inside div element don't effect by style:display attribute of div

2007-12-31 Thread Nguyễn Quốc Vinh
I have a div element! And insite it have a form element as the following: I set display attribute is none, but the form still appear! If i insert some text into div (but outside form then that text don't display! But the text which is inside form then still display! I think that form element was ef

[jQuery] jquery and safari

2007-12-31 Thread pixeline
hi! i'm having issues to have my project work in safari. No problem with Firefox, IE6+ or Opera, just Safari, both the mac and windows versions. The symptom is: the page is empty! only the background image shows, and nothing on top! My code is quite long so instead of burdening you under it, i

[jQuery] Re: adding conditional to $("x")

2007-12-31 Thread Kelvin Luck
Hi, You could try this (untested): $('[EMAIL PROTECTED]').each( function() { $this = $(this); if ($this.val() < 5) { $this.addClass('S'); } else if ($this.val() > 10) { $this.addClass

[jQuery] adding conditional to $("x")

2007-12-31 Thread Dug Falby
Hi all, I'd like to do the following: walk through the DOM stopping at: [EMAIL PROTECTED] and conditionally add a class to each input tag: if [EMAIL PROTECTED]() < 5 then .addClass('S') if [EMAIL PROTECTED]() > 10 then .addClass('L') else .addClass('M') Can I still use the lovely $() constru