[jQuery] jQuery and XML revisited (tutorial)

2007-09-24 Thread Giant Jam Sandwich
This is a tutorial I posted this evening. I thought I might throw it up here in case anyone was interested. http://blog.reindel.com/2007/09/24/jquery-and-xml-revisited/ Brian Reindel d'bug @ blog.reindel.com

[jQuery] Re: jQuery for Floating Div

2007-09-24 Thread Karl Swedberg
On Sep 24, 2007, at 8:45 PM, Glen Lipka wrote: Sorry Karl. I just grabbed the one that came up first in google. :) Yeah, that amazon effect is really useful. Hey, not a problem, Glen. :-) I tried to do that with Intuit, but couldn't figure it out, so I ended up with the slideLinks instead.

[jQuery] Re: jQuery for Floating Div

2007-09-24 Thread Glen Lipka
Sorry Karl. I just grabbed the one that came up first in google. :) Yeah, that amazon effect is really useful. I tried to do that with Intuit, but couldn't figure it out, so I ended up with the slideLinks instead. These did very well in usability studies. Unexpected wow. http://www.commadot.com/

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Michael Geary
OK, here is the client-side undo plugin demo that I mentioned earlier: http://mg.to/znc/colortuner.html This is the color tuner from the Zvents Network Calendar wizard. Normally you would get to the color tuner by going to a venue page or your MyZvents page on www.zvents.com and then clicking "

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

2007-09-24 Thread [EMAIL PROTECTED]
Hi, I'm OLEO.nice to meet you. I also meet this problem when I use JQuery1.2 finally I modifid jquery.treeview.js from $("li[ul]", this) to $("li:has(ul)", this) and then it works well good luck On Sep 13, 12:07 am, Alex <[EMAIL PROTECTED]> wrote: > I've got a page that is a massive treevi

[jQuery] Re: Metadata plugin performance issues

2007-09-24 Thread voltron
Oh! I skipped that, thanks! On Sep 24, 7:51 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > voltron schrieb:> Would there be an official bug fix sometime? I am using it > with > > validation plugin > > As mentioned in the previous post: I already fixed that. > > -- Jörn

[jQuery] Re: jQuery for Floating Div

2007-09-24 Thread Karl Swedberg
Hey Glen, That's actually a pretty old version of the plugin. A new(er) and improved version can be found here: http://plugins.learningjquery.com/cluetip/demo/ Pete, Check out that URL above and click on the Examples link at the top of the page. Then hover over the link that says "sort of

[jQuery] toggle and checkbox

2007-09-24 Thread sheetzam
Using jquery 1.2.1 toggle: jQuery().ready(function(){ $('#multiple').toggle( function(){ $('.afield').attr('disabled',true); }, function(){ $('.afield').removeAttr('disabled'); } ); }); I'm trying to toggle t

[jQuery] Re: .replaceWith() broken in Firefox 2 I think

2007-09-24 Thread Steve Finkelstein
John, Well figures .. it is my code. .html() certainly does the trick. I wasn't aware that replaceWith removes stuff from the DOM indefinitely. A, thanks for saving me from hours of troubleshooting. I really really appreciate it. - sf On 9/24/07, John Resig <[EMAIL PROTECTED]> wrote: > > A

[jQuery] ajax history woes iframe or fragment

2007-09-24 Thread [EMAIL PROTECTED]
I am currently working on a site/application that is ajax driven. As it stands right now it works properly, and degrades properly as well. One issue I am having is history. I tried klaus's history plugin, and it works great except one small problem, several of my links that are loaded by the the a

[jQuery] Re: Checkbox "checked" event

2007-09-24 Thread Josh Nathanson
If you're talking about capturing the event when a checkbox is checked, then "click" is correct. $("#mycheckboxid").click(function() { dostuff; }); - Original Message - From: "voltron" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Monday, September 24, 2007 2:04 PM Subject: [jQ

[jQuery] Help on Post with Callback

2007-09-24 Thread [EMAIL PROTECTED]
I have the following code that works except for the callback part of it is not doing exactly what I want. Right now it reloads the test.php page instead of using the same instance of it inputing the variables. How do I properly update the currentposition div? $(document).ready(function(){ $("for

[jQuery] Re: .replaceWith() broken in Firefox 2 I think

2007-09-24 Thread John Resig
Are you meaning to do .html(..) instead of replaceWith? replaceWith completely removes the element (which means that when it's called the second time, nothing happens, since the element no longer exists). Whereas .html() simply replaces the contents of the element. --John On 9/24/07, Steve Fin

[jQuery] Re: .click() not working in ie6... 'g' is null or not an object

2007-09-24 Thread Erik Beeson
hover expects 2 functions, so getting an error isn't surprising. After a cursory look at your code, one thing that jumps out is I suggest you don't do $('div#wrap').attr('class') == "xlarge". Instead, do: $('div#wrap').is(".xlarge"). Other than that, maybe verify that your selector is working rig

[jQuery] Re: .replaceWith() broken in Firefox 2 I think

2007-09-24 Thread Steve Finkelstein
This is actually happening in IE7 also. Is it possible that something is hosed with my code? I'm more confident it's that than a broken replaceWith() but I'd really like to know why it only works once, and then I need a page refresh for that "ajax" effect. - sf On 9/24/07, Steve Finkelstein <[EM

[jQuery] Re: Checkbox "checked" event

2007-09-24 Thread Glen Lipka
$("input :checked") $("input").is(":checked"); Untested. But I think they work. Glen On 9/24/07, voltron <[EMAIL PROTECTED]> wrote: > > > How do I detect if a checkbox is checked by a user? change or click > would be wrong. > > Thanks > >

[jQuery] Re: jQuery for Floating Div

2007-09-24 Thread Glen Lipka
That's a nice effect. I have been trying to do something like that too. Microsoft does a very similar thing. Some helpful plugins to check out: 1. Hoverintent. Slows down the interaction to make sure the user intended to mouseover.http://cherne.net/brian/resources/jquery.hoverIntent.html 2. ClueT

[jQuery] .replaceWith() broken in Firefox 2 I think

2007-09-24 Thread Steve Finkelstein
Hi all, So I have a simple script which essentially uses .replaceWith() to replace the containing elements HTML with a success callback. This works fine the first time I invoke a function which calls .replaceWith() in the success call back, but any subsequent calls leaves the DOM unmodified. Her

[jQuery] Re: Validation plugin - alphanumeric password with min length

2007-09-24 Thread voltron
Yes, I added the method, this is what I have now // JS $(document).ready(function(){ jQuery.validator.addMethod("password", function( value, element, param ) { return this.optional(element) || value.length >= 6 && / \d/.test(value) && /[a-z]/i.test(value); }, "Your password must

[jQuery] Re: Getting started

2007-09-24 Thread Rey Bango
Hi Yaip. You'll need to provide some more details as to what you'd like to accomplish. Rey yaip wrote: I am brand new to this. Reading the documentation, I know how I would use jQuery. But I don’t know how to use UI or Widget. Can anyone help?

[jQuery] .click() not working in ie6... 'g' is null or not an object

2007-09-24 Thread AnalogPanda
I hope this isn't a double post... This is kind of an awkward problem to search on Perhaps the root of my problem is the custom function I've written, but I've set up an "increase/decrease text size" function on a site and it's not working in ie6 (works fine on XP in ff2, ie7, Opera9, and Safari

[jQuery] Re: jQuery.dequeue is not a function

2007-09-24 Thread Rantony
The same error shows up whenever I call Jquery.stop(); my goal is to prevent all the queued "slow" animations. R1.2 On Sep 13, 2:27 pm, "Rafael Santos" <[EMAIL PROTECTED]> wrote: > I'm getting the same error while testing the release 1.2. > It happens when I fire $.scrollTo().. > >

[jQuery] Checkbox "checked" event

2007-09-24 Thread voltron
How do I detect if a checkbox is checked by a user? change or click would be wrong. Thanks

[jQuery] strange slice and eq behavior with star ratings + jQuery 1.2.1

2007-09-24 Thread Jim Spath
There is a line in the (Wil Stuckey's) star ratings plugin that looks like this: stars.eq(averageIndex).addClass('on').children('a').css('width', percent + "%"); I found that the eq() function was not returning 1 item, but rather all matching items from averageIndex to the end of the items. M

[jQuery] jQuery for Floating Div

2007-09-24 Thread Pete
Hi all, I'm trying to construct a "popover" menu that resembles the one on Amazon.com (put your mouse over "see all 43 product categories"). I'm not too familiar with jQuery/JavaScript, but I thought I would be able to do something like this: $(document).ready(function(){

[jQuery] Re: Open and search a .XML file

2007-09-24 Thread Danjojo
Hi, thank you for helping me begin down this path. Before I use the $.ajax function, do I need to install a codebase for it? I notice it is similar to Klaus Hartl cookie plugin, where I install his codebase, then use it later like var country = $.cookie('language'); When I start to use this cod

[jQuery] Getting started

2007-09-24 Thread yaip
I am brand new to this. Reading the documentation, I know how I would use jQuery. But I don't know how to use UI or Widget. Can anyone help?

[jQuery] tablesorter and charset

2007-09-24 Thread [EMAIL PROTECTED]
hello, is it possible to use tablesorter with charset other than US? For example with latin2, cp1250 etc. Let's make example: using cp1250: a, ą, b, c, ć ... using US: ą, ć, a, b, c ... regards tom

[jQuery] Re: ajaxcfc - if ajax call fails - how does it get handled?

2007-09-24 Thread Alexander Bilbie
It's just 'failure' then function etc.. So from your script: $.AjaxCFC({ url: "/packages/ajax/primaryInvitee .cfc", method: "addInvitee", data: options, success: function(r) { thisCheck = "check_" + r.LOGI

[jQuery] Retrieving the parent of a cloned element

2007-09-24 Thread voltron
Changed the title again, so, now hopefully someone can help me with my problem.

[jQuery] Re: Ajax Experience Boston : jQuery Camp 2007 - Location & Times?

2007-09-24 Thread John Resig
Right now we're probably looking at 9am to 5pm at Harvard University. We're still waiting on a final confirmation from them, so that's not absolutely final yet. If that doesn't work out, then it'll probably be down the road at MIT. After 5 we'll probably do dinner/drinks at a local establishment.

[jQuery] Re: Partial .load()

2007-09-24 Thread Smith, Allex
I swear I tried this... However of course it works now and probably did before. Thank you sir. Works as expected now and my love for jQuery only grows. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Monday, September 24, 2007

[jQuery] Ajax Experience Boston : jQuery Camp 2007 - Location & Times?

2007-09-24 Thread Jonathan Sharp
Have any details been nailed down in regards to the Sat. Oct 27th jQuery Camp following Ajax Experience? I need to finalize travel arrangements so a location and ending time would be most helpful. Looking forward to it! -js

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Michael Geary
> > > From: Steve Finkelstein > > > I was curious if there is anyone currently working on > > > an 'Undo' type plugin for the jQuery platform. Essentially, > > > similar functionality to what gmail offers is desired by > > > many. If not in the works, I wouldn't mind giving it a > > > shot myself.

[jQuery] Re: Partial .load()

2007-09-24 Thread John Resig
If you only want the children, just use a child selector: $("#topic").load("help.html #topic-example > *"); The other selector mentioned "#topic-example *" will get you all descendants, which will certainly give you strange results. --John On 9/24/07, Smith, Allex <[EMAIL PROTECTED]> wrote: > >

[jQuery] Re: Rudimentary jQuery question

2007-09-24 Thread Steve Finkelstein
Well, I think I've accomplished completely confusing myself. I'll include both the client-side and server-side scripts I'm using here. It's pretty self-explanatory what I'm trying to accomplish, but I'm having a great ordeal of trouble getting there. Without further a due: dbsync.php -- ht

[jQuery] Re: Partial .load()

2007-09-24 Thread Smith, Allex
Yes, that works but... This and any other way I do it produces interesting results. This: This is some dummy text. Just some more text. This is some dummy text. Just some more text. http://www.google.com";>Test Link This is some dummy text. Just some more text.

[jQuery] Re: Rudimentary jQuery question

2007-09-24 Thread Glen Lipka
Rudimentary is in the eye of the beholder. ;) On 9/24/07, Steve Finkelstein <[EMAIL PROTECTED]> wrote: > > > Hi all, > > So I'm trying to do something rather simple, but having difficulty > accomplishing it. I'm basically giving the user an option to delete a > row from a table within a div, usi

[jQuery] Rudimentary jQuery question

2007-09-24 Thread Steve Finkelstein
Hi all, So I'm trying to do something rather simple, but having difficulty accomplishing it. I'm basically giving the user an option to delete a row from a table within a div, using something similar to this on the server-side: if(mysql_num_rows($result) == 0) { exit; }

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread John Beppu
In response to the original poster... Even if you just want a purely client-side undo mechanism (that delayed sending to the server until you're ready), you'd need to maintain some kind of event queue. That kind of thing tends to be very app-specific, and it's hard thing to generalize w/o definin

[jQuery] Re: an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Jörn Zaefferer
Steve Finkelstein schrieb: Hi all, I was curious if there is anyone currently working on an 'Undo' type plugin for the jQuery platform. Essentially, similar functionality to what gmail offers is desired by many. If not in the works, I wouldn't mind giving it a shot myself. Implementing an un

[jQuery] Re: Partial .load()

2007-09-24 Thread Marc Jansen
Hi, untested: $("#topic").load("help.html #topic-example *"); -- Marc Smith, Allex schrieb: I'm going nuts with a fairly simple selector issue. $("#topic").load("help.html #topic-example"); I want to get the contents of #topic-example, but only the children, not the container itself. What

[jQuery] Re: unload

2007-09-24 Thread Erik Beeson
Try $(window).unload(...). Works for me on firefox. I think these docs are wrong: http://docs.jquery.com/Events/unload#fn --Erik On 9/24/07, Trans <[EMAIL PROTECTED]> wrote: > > > I tried this: > > $(document).unload(function() { alert("Bye now!"); } ); > > But it doesn't seem to do anything.

[jQuery] an "Undo" plugin, or something as such. :-)

2007-09-24 Thread Steve Finkelstein
Hi all, I was curious if there is anyone currently working on an 'Undo' type plugin for the jQuery platform. Essentially, similar functionality to what gmail offers is desired by many. If not in the works, I wouldn't mind giving it a shot myself. Thanks for any insight. - sf

[jQuery] unload

2007-09-24 Thread Trans
I tried this: $(document).unload(function() { alert("Bye now!"); } ); But it doesn't seem to do anything. What am I doing wrong? (I'm using the latest version of jQuery.) Thanks, Trans.

[jQuery] Re: Hover function no longer works after upgrade to 1.2.1

2007-09-24 Thread Glen Lipka
I went to the page and don't quite follow what you are saying. Best guess: The element doesn't exist when you apply the hover function. Use Live Jquery to add events to elements that are arriving via ajax after page load. It might be easier if you tried to whittle down the example to it's barest

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-09-24 Thread polyrhythmic
Looks like the source is well-documented in English, at least, easy to follow. Very nice, jQuery hasn't had lightbox-style transitions since Interface. I'd like to incorporate these into Thickbox as some sort of mutant uberbox. Also good to see jQuery-style element selection, completely unobtrus

[jQuery] Re: jQuery camp: any closer to a location decision?

2007-09-24 Thread Jonathan Sharp
Are there any details in terms of times? I'm attempting to schedule a flight and need to know if I have time to catch on Saturday night. Cheers, -js On 9/15/07, John Resig <[EMAIL PROTECTED]> wrote: > > > It's very likely that this will be taking place at Harvard University, > thus, it'll be on

[jQuery] Re: Accordion-Like Menu: Setting (and removing) class on active item

2007-09-24 Thread Moogadelic
Moogadelic wrote: > > Hi > > I tried to put together an easy accordion-like effect: > > http://www.smartforce.ch/jquery/ShowHide.html > > There is one problem: the selected-class will not be removed if all > items are closed (again). The class ".selected" should be removed if > no div is vis

[jQuery] Re: Why doesn't jQuery complete animations smoothly?

2007-09-24 Thread Chris W. Parker
On Monday, September 24, 2007 10:34 AM John Resig said: > In your code you're modifying the .html() of contents twice after the > animation has already started. If you do a "show" animation (like what > .show() and .sildeDown() do) then they do a calculation animating the > height to "auto" - if

[jQuery] Re: Validation plugin - alphanumeric password with min length

2007-09-24 Thread Jörn Zaefferer
voltron schrieb: Hi Jörn, I have just tested your suggestion. Sadly, it does not work, if I add "password:true to my HTML, I get this: jQuery.validator.methods[rule.method] has no properties http://localhost/de/js/jquery.validate.pack.js Line 14 I am following the example on your page, the one

[jQuery] Re: Metadata plugin performance issues

2007-09-24 Thread Jörn Zaefferer
voltron schrieb: Would there be an official bug fix sometime? I am using it with validation plugin As mentioned in the previous post: I already fixed that. -- Jörn

[jQuery] Re: Accordion-Like Menu: Setting (and removing) class on active item

2007-09-24 Thread Wizzud
You could try... $(document).ready(function() { $('div.showHide> div').hide(); $('div.showHide> h2').click(function() { $(this).siblings('.selected').andSelf().toggleClass('selected').end().end() .next('div').slideToggle('fast') .siblings('div:visible').slideUp('fas

[jQuery] Partial .load()

2007-09-24 Thread Smith, Allex
I'm going nuts with a fairly simple selector issue. $("#topic").load("help.html #topic-example"); I want to get the contents of #topic-example, but only the children, not the container itself. What is the proper way to do this. It seems so simple, but I'm struggling with it. Thanks AllexS

[jQuery] Re: Why doesn't jQuery complete animations smoothly?

2007-09-24 Thread John Resig
In your code you're modifying the .html() of contents twice after the animation has already started. If you do a "show" animation (like what .show() and .sildeDown() do) then they do a calculation animating the height to "auto" - if that height changes after the animation has already begun then th

[jQuery] Re: New Plugin: Picklists

2007-09-24 Thread Leonardo K
I have a suggestion: Example: If u have a select multiple with few options already selected. When the plugin is activeted it move all options to another select but it lose all options selected before. Instead of this: function moveAllOptions(from, to) { jQuery("#"+to).ht

[jQuery] Why doesn't jQuery complete animations smoothly?

2007-09-24 Thread Chris W. Parker
Hello, Maybe this has everything to do with implementation and is not a fault of jQuery but I've always wondered why animations (like slideDown) do not finish smoothly. Case in point: http://leandrovieira.com/projects/jquery/lightbox/ The animation is smooth until the very end where it jumps to

[jQuery] Re: JQUERY & UTF8

2007-09-24 Thread Chris W. Parker
On Sunday, September 23, 2007 5:40 AM Bil Corry said: > Mahir wrote on 9/21/2007 11:02 PM: >> the datatype collaboration is utf8_unicode_ci in mysql. it retrieves >> value as ?? > > I'm guessing you mean the UTF-8 replacement character " ": It's probably showing up as questions marks. I had

[jQuery] UI tabs - find unique

2007-09-24 Thread Dmitrii 'Mamut' Dimandt
Trying out jQuery UI. Here's a problem I came across while looking at tabs. I need to ensure that when a tab is opened it's unique. That is, when an attempt is made to open a tab with the same content, an existing tab should open up instead. Here's what I mean: I have a grid that lists, say da

[jQuery] Re: Superfish not working on PHP page

2007-09-24 Thread Joel Birch
The only issue I can imagine in this scenario is that you are initialising Superfish before the HTML for the menu has been loaded and injected into the DOM. Make sure you are putting the Superfish initialisation code in the callback of the function you are using to dynamically load the XML, and af

[jQuery] Re: Hover function no longer works after upgrade to 1.2.1

2007-09-24 Thread ryexley
*Bump* No ideas on this at all? On Sep 22, 12:10 am, ryexley <[EMAIL PROTECTED]> wrote: > I'm using the hover event handler to setup an animation for a class of > objects on a page, and have started seeing some odd behavior since > upgrading to jQuery 1.2.1. I have an application currently loca

[jQuery] Superfish not working on PHP page

2007-09-24 Thread Jangla
I've got a page that dynamically loads an xml file and transforms it into a menu. I had wanted to use the nice fade effects of superfish but for some reason, no matter what I do, the animation won't happen! I've used the latest version of jQuery and made sure I use the provided CSS and all other

[jQuery] Re: AJAX Grouping feature...

2007-09-24 Thread voltron
Thanks Stephan! Kindly change the thread title again please :-)) On Sep 24, 4:33 pm, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Sep 24, 2:49 pm, John Farrar <[EMAIL PROTECTED]> wrote: > > > I would like to see a function (of course it might be there alleady and > > I don't know it) like this ad

[jQuery] Re: OT: Google autofill(or any others) and form events

2007-09-24 Thread Sam Collett
I don't know if you can check if autofill has changed a form field. What may work is using a setTimeout (to give the autofiller chance to run) and then reset the background colour: setTimeout( function() { $("#myfield").css("background-color", "")}, 1000); I have not tried this, so am not 100%

[jQuery] Re: Mouseout problems

2007-09-24 Thread Glen Lipka
Use hover, plus I suggest the hoverIntent plugin. It would wait until the user slowed down over the element. Its a lifesaver. http://cherne.net/brian/resources/jquery.hoverIntent.html Glen On 9/23/07, Nick Mohr <[EMAIL PROTECTED]> wrote: > > > Hi all, > > I'm looking to replicate this effect: >

[jQuery] Re: Select event on SELECT box

2007-09-24 Thread Glen Lipka
Check out this page to see the available events: http://docs.jquery.com/Events One you will probably need is $("select").change(... That fires when the user selects an option with keyboard or mouse. What do you mean "de-select"? Glen On 9/23/07, luigi7up <[EMAIL PROTECTED]> wrote: > > > Hi, >

[jQuery] Re: OT: Google autofill(or any others) and form events

2007-09-24 Thread Eridius
I have been trying to think of a way to track auto fill type stuff. I am not sure if this is possible, but is there a way to track if the text() of a certain object has changed and then trigger an even ti it has. Eridius wrote: > > I am doing some validation on a form using live validation.

[jQuery] Re: "each()" and "this" problems

2007-09-24 Thread george.gsgd
> // VERSION 2 supposed to remove bad branches > // instead removes ALL branches > var this2 ; > $(objectfoo).children().each(function(ichild){ > this2 = this ; // buffer > if($(this2).find('a').not(keeplist)){$(this).remove();}}) > Well to try and break it down,

[jQuery] Re: AJAX Grouping feature...

2007-09-24 Thread Stephan Beal
On Sep 24, 2:49 pm, John Farrar <[EMAIL PROTECTED]> wrote: > I would like to see a function (of course it might be there alleady and > I don't know it) like this added to jQuery. > > http://docs.mootools.net/Plugins/Group.js Hi, John! When posting to the list, please always start a NEW mail, and

[jQuery] Re: New Plugin: Picklists

2007-09-24 Thread Stephan Beal
On Sep 24, 4:12 pm, "george.gsgd" <[EMAIL PROTECTED]> wrote: > Can anyone help me come up with a better name for this? I struggled to > come up with 'Picklists', and I'm not sure it's particularly > descriptive or obvious... a) Linked Selection? b) Chained Selection? c) ... err... Natural Selecti

[jQuery] Re: New Plugin: Picklists

2007-09-24 Thread george.gsgd
Haha, real friday afternoon job. Sorry about that. I've updated the page to correct the typos. http://gsgd.co.uk/sandbox/jquery/picklists/ Can anyone help me come up with a better name for this? I struggled to come up with 'Picklists', and I'm not sure it's particularly descriptive or obvious..

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-24 Thread hobbit
OK, I got it working. Using the following code, all statement are affected: $(function() { $("select").change(function() { $('[EMAIL PROTECTED]').attr('style', 'position:absolute; top:200; left:400; height:145px; width:145px; z-index:2; background- image: url(/sms_

[jQuery] Re: Validation plugin - alphanumeric password with min length

2007-09-24 Thread voltron
Hi Jörn, I have just tested your suggestion. Sadly, it does not work, if I add "password:true to my HTML, I get this: jQuery.validator.methods[rule.method] has no properties http://localhost/de/js/jquery.validate.pack.js Line 14 I am following the example on your page, the one with the separate

[jQuery] Retrieving the parent of a cloned element

2007-09-24 Thread voltron
Hmm, I think thats something different On Sep 24, 2:49 pm, John Farrar <[EMAIL PROTECTED]> wrote: > I would like to see a function (of course it might be there alleady and > I don't know it) like this added to jQuery. > > http://docs.mootools.net/Plugins/Group.js

[jQuery] Re: Adding :hover css support to IE6 - ie6HoverFix

2007-09-24 Thread Christian Bach
Fabien, This needs to be done to support the :focus pseudo class. Getting the stylesheet with the native cssText method will return :focus as unkown. /christian 2007/9/23, Fabien Meghazi <[EMAIL PROTECTED]>: > > > > May I ask you why you are fetching inline/remote css in the updated > > versi

[jQuery] Re: IT Assistant

2007-09-24 Thread GianCarlo Mingati
On Sep 24, 1:17 pm, Gordon <[EMAIL PROTECTED]> wrote: > Well it's finally ready enough to go live so now I can plug the big > jQuery-driven project I've been working on. Gordon, that is a really well designed app. I love the way the product-boxes expands, and the overall functionalities. Bravo!

[jQuery] Re: Insert Images from a folder

2007-09-24 Thread Karl Swedberg
I'm not familiar with how the plugin works. I only know that it exists. How exactly are the images being inserted? Can you use Firebug (the Firefox extension) to view the DOM and see exactly how those files are being placed on the page? You might be able to do some DOM manipulation once the

[jQuery] AJAX Grouping feature...

2007-09-24 Thread John Farrar
I would like to see a function (of course it might be there alleady and I don't know it) like this added to jQuery. http://docs.mootools.net/Plugins/Group.js

[jQuery] Re: IT Assistant

2007-09-24 Thread Rick Faircloth
Very slick, Gordon! Congratulations! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Sent: Monday, September 24, 2007 7:17 AM To: jQuery (English) Subject: [jQuery] IT Assistant Well it's finally ready enough to go live so now I c

[jQuery] Re: Opacity in Superfish?

2007-09-24 Thread jon randahl
Joel, That was exactly what I meant! Thank you so much! Could I make one suggestion for the superfish.css file; if I might? Having the structural css seperate from the display css would allow us to "skin" the menus without worrying about breaking the functionality... Granted, it's not that hard

[jQuery] Re: IT Assistant

2007-09-24 Thread Michael Stuhr
Gordon schrieb: Well it's finally ready enough to go live so now I can plug the big jQuery-driven project I've been working on. It's called IT Assistant and is intended to make shopping to IT equipment easier (and more fun from the comments I've had back on it so far :) ). http://www.pcwb.com/

[jQuery] Re: jQuery Libary and Superfish collision?

2007-09-24 Thread Joel Birch
Hello, The latest version of Superfish uses the latest version of the jQuery library which is version 1.2.1, as you said. I'm not sure why you have another file called jquery.js, but you should probably just remove that as you won't need to include two jQuery files. Simply include the Superfish c

[jQuery] IT Assistant

2007-09-24 Thread Gordon
Well it's finally ready enough to go live so now I can plug the big jQuery-driven project I've been working on. It's called IT Assistant and is intended to make shopping to IT equipment easier (and more fun from the comments I've had back on it so far :) ). http://www.pcwb.com/assistants/ the p

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-09-24 Thread Gordon
Interesting looking plugin, I'm curious though, how does it compare to the thickbox plugin? Does it allow accessing HTML pages through AJAX and displaying them like thickbox does? On Sep 23, 10:46 pm, Leandro Vieira Pinho <[EMAIL PROTECTED]> wrote: > jQuery lightBox plugin is a powerful and simp

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-09-24 Thread Rick Faircloth
Hi, Leandro... very nice plug-in. I was wondering if the plug-in display can handle various sizes and orientations of images...i.e. can vertical images display as easily as horizontal? Does the display area automatically conform to the image size/orientation? Thanks, Rick -Original Messag

[jQuery] Re: Cycle plugin, pager option bug

2007-09-24 Thread Mike Alsup
Fixed! On 9/23/07, vukank <[EMAIL PROTECTED]> wrote: > > > First, I have to say this is a great plugin! And I want to use it. > But, anyone else noticed a bug in cycle plugin pager option? > http://malsup.com/jquery/cycle/pager.html > If you click a page - the timeout changes, and the time between

[jQuery] Re: Superfish pathclass question

2007-09-24 Thread steve35mm
Hi Joel - First of all, thank you so much for your response. I mulled over this thing for hours to no avail so your help is much appreciated. (And thanks for your kind words regarding my design.) I've implemented your solution and it seems to do the trick -- aside from one (hopefully minor) is

[jQuery] Retrieving the parent of a cloned element

2007-09-24 Thread voltron
I am cloning a set of elements, one of these elements is a button that would delete this set of elements when clicked on. My problem is that I cannot successfully bind a function to the button that does the deleting // JS code $("#add_activity").click(function(){ var maxCount = [1,2,

[jQuery] Superfish pathclass question

2007-09-24 Thread steve35mm
I'm currently designing a new website using the Superfish pathclass navigation system to create breadcrumb functionality. You can view my beta site here: http://www.aceconcrete.com/revised/ This is where the situation becomes unique. The client has requested that (aside from the homepage) that

[jQuery] jQuery Libary and Superfish collision?

2007-09-24 Thread breastfed
Hey, i set up a webprojekt with the latest jQuery libary. For the menu i decided to work with the superfish menu. As i set up all stuff i saw that these two scripts deactivated themselves. Superfish uses jquery.1.2.1.js and the Libary jquery.js - How can i combinate those two jQuerys? Thank you!

[jQuery] Re: Problem with XML :contains('texthere') Selector on IE

2007-09-24 Thread 胡争辉
you may use another tag instead of "title". > > > > > $(document).ready ( > function () { > console.info($("title")); > console.info($("not_title")); > console.info($("div title")); >

[jQuery] Re: Listbox values > text box

2007-09-24 Thread Diddly Doo
Yeah, I'm trying to add all the values from the listbox to the hidden box. The box is type="hidden". I think we need some kind of loop possibly to get all the values.

[jQuery] Re: Metadata plugin performance issues

2007-09-24 Thread voltron
Would there be an official bug fix sometime? I am using it with validation plugin Thanks

[jQuery] Accordion-Like Menu: Setting (and removing) class on active item

2007-09-24 Thread mike
Hi I tried to put together an easy accordion-like effect: http://www.smartforce.ch/jquery/ShowHide.html There is one problem: the selected-class will not be removed if all items are closed (again). The class ".selected" should be removed if no div is visible. How do I achieve this? "toggleClass

[jQuery] Accordion-Like Menu: Setting (and removing) class on active item

2007-09-24 Thread mike
Hi I tried to put together an easy accordion-like effect: http://www.smartforce.ch/jquery/ShowHide.html There is one problem: the selected-class will not be removed if all items are closed (again). The class ".selected" should be removed if no div is visible. How do I achieve this? "toggleClass

[jQuery] Cycle plugin, pager option bug

2007-09-24 Thread vukank
First, I have to say this is a great plugin! And I want to use it. But, anyone else noticed a bug in cycle plugin pager option? http://malsup.com/jquery/cycle/pager.html If you click a page - the timeout changes, and the time between slides becomes uneven ... Mike, please help!

[jQuery] Cycle plugin, pager option bug

2007-09-24 Thread vukank
First, I have to say this is a great plugin! And I want to use it. But, anyone else noticed a bug in cycle plugin pager option? http://malsup.com/jquery/cycle/pager.html If you click a page - the timeout changes, and the time between slides becomes uneven ... Mike (or anyone), please help!

[jQuery] Re: overide or deleting events

2007-09-24 Thread ukong wong
just a quick reply. (too lazy to check the api) I guess $(...).one('click', ... ); may be useful for you. -- ukong

[jQuery] Re: Help me improve my script

2007-09-24 Thread muccy
#2 =))) #3 I think the difference consists in: - children() finds direct descendants - find() finds ALL the descendants (the children, the children of children, and so on) #1 maybe you can do it...but I never tried (BUT THERE ARE SOME USEFUL PLUGINS) var e = $("document").append("").ch

[jQuery] Mouseover problems with multiple elements

2007-09-24 Thread nickm
Hi all, I'm looking to replicate this effect: http://themes.wordpress.net/testrun/?wptheme=332 But I'm running into problems using mouseout as it fires every time i go over an element inside the target element, thus making a box that bounces up and down/ shut prematurely etc. Anyone got any ide

  1   2   >