[jQuery] Re: UI Autocomplete documentation

2008-10-01 Thread ajpiano
http://docs.jquery.com/UI/Autocomplete is current for 1.6. however the example is not. --adam On Oct 1, 2:21 am, mario [EMAIL PROTECTED] wrote: Thank you very much, Any idea when the 'official' documentation might be ready? On Sep 30, 6:56 pm, MorningZ [EMAIL PROTECTED] wrote:

[jQuery] Re: Superfish Basic (horizontal)- How to go right across the screen

2008-10-01 Thread yvonney
MUCH appreciated... very concise... so... on the full width thing... yes... hadn't thought of that at all... though I'm thinking.. hey, isn't there just a line in the CSS I can mod.. dunno... I guess I'm saying cool great idea... and, geez, seems like Superfish should have some hooks to do that?

[jQuery] Re: Fire bug error : too much recursion

2008-10-01 Thread Amardeep
i am using jQuery in drupal .. can u tell me how do i know if i am using JASON library. i am pretty new in jquery and do apologize if my question sounds stupid On Wed, Oct 1, 2008 at 6:36 AM, Karl Rudd [EMAIL PROTECTED] wrote: Are you using the JSON library from json.org? If so, make sure it's

[jQuery] Re: Assign 'active' to nav element

2008-10-01 Thread Michael Geary
That's no problem, we are all newbies at something. So you just want the H2 element to get an 'active' class when you click on it? Then add this inside the click function: $(this).addClass('active'); -Mike From: yellowboy Yes, that is why I am seeking some assistance. Not sure how to

[jQuery] equivalent of document.createElement in jQuery

2008-10-01 Thread [EMAIL PROTECTED]
Hi, What is the equivalent of document.createElement in jQuery ? I know there is $(html) but this only set the innerHtml property of another element. I need to create a new TABLE markup and be able to interact with this new element by adding more TR to it. Thanks

[jQuery] Re: equivalent of document.createElement in jQuery

2008-10-01 Thread BB
You can do that with $( html )! var $table = $(tabletr id='1'/tr/table).append(tr id='2'/ tr); now you can do other things with the virtuall table $table.find(tr#2).append(tdHello World/td); On 1 Okt., 11:46, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, What is the equivalent of

[jQuery] Re: equivalent of document.createElement in jQuery

2008-10-01 Thread [EMAIL PROTECTED]
Ignore my post. I'm being silly, there was a mistake at the last line I was appending to a new table Thanks for that. On 1 oct, 10:56, BB [EMAIL PROTECTED] wrote: You can do that with $( html )! var $table = $(tabletr id='1'/tr/table).append(tr id='2'/ tr); now you can do other things

[jQuery] reaching a div in mainpage from loaded content

2008-10-01 Thread jscharf
hey, i got a problem reaching a div from content i loaded with jquerie's load here it is Mainpage (index.php) ... $(#area3).load(myfile.php); ... Now in myfile.php i will hide a div like this ... $(#submenu).hide(); ... PHP Code ... but nothing happens How do i change attributes etc from

[jQuery] jcarousel reset

2008-10-01 Thread Anatalsceo
The jcarousel plug works really great. I only have a problem with the reset function. I try on a page to change the content of the carousel without reloading the page. I'm using for this the $(document).ready(function() {} in order to change the carousel on a click. It doesn't quite work and I

[jQuery] Problem with links / html() / IE6

2008-10-01 Thread John McCollum
Hi all, I'm having a problem with JQuery 1.2.6. I'm using JQuery to post data to a PHP page which should process the information and return some html. The problem is that the links that are returned aren't working in IE6 at all! Here's what I've got: $(#login).bind(submit,

[jQuery] Jquery validation messages repeating

2008-10-01 Thread prakash matte
When i press the submit button of a form, it is showing the corresponding error message by the side of the text field. But when i press the submit button again, the error message is getting concatenated with the older one and getting displayed (means it is displaying that many times the submit

[jQuery] jQuery UI bug on JS PACKER

2008-10-01 Thread RepThe415
I had always an error on packing my customized UI with the JS PACKER script, after applying several enhancements to the code. The error was saying missing ; before statement. Today I've found the reason why and since there is no UI bugtracker available at the moment I thought I will just let the

[jQuery] jQuery Cycle Question / Showoff

2008-10-01 Thread sorahn
Hey guys, i just wanted to show off a bit with some jquery.cycle work that i managed to rig up following a few demos. http://monsterpocalypsegame.com/ The only thing it doesn't do, which i'm not sure how to make it do, is pause when i'm hovering the pager items. Right now if you hover a pager

[jQuery] Re: Exhausted..Need HELP Please! - Jquery / Simplemodal / Jquery.validate.js

2008-10-01 Thread Nicolas R
I would say that the problem is caused by either invalid HTML and/or event bindings being lost after you replace the original element with a new one (retrieved via ajax perhaps). I haven't checked for the second case, but it appears that invalid HTML is the most probable cause. It's always good

[jQuery] [validate] regexp validate email error?

2008-10-01 Thread valugi
I am using jQuery validator and this format doesn't pass although is a standard one [EMAIL PROTECTED] can I overwrite somewhere/somehow the regexp of this plugin without touching it or there are better ways to do it? Thanks

[jQuery] Re: Validation regarding Jquery

2008-10-01 Thread Nicolas R
just make sure that you remove any previous validation messages before inserting new ones. if you add class of 'validation-msg' to your messages, then do a $('.validation-msg').remove() whenever you validate something. If you are considering performance when you could also do something along the

[jQuery] Re: Setting the selected item in a combo box

2008-10-01 Thread Pete
Ricardo. Thanks very much! I'll need to give this some thought then. The timing is an issue (I kind of thought it would be given the asynchronous nature of Ajax. Digging deeper, I realize that I am using a combo.js (selectCombo) that was written by Shelane Enos. I need to do some examination

[jQuery] Re: fadein/fadeout conflicting

2008-10-01 Thread backdoc
Awesome! That works perfectly. Thanks for your help. On Oct 1, 12:19 am, ricardobeat [EMAIL PROTECTED] wrote: fadeOut() actually sets display:none at the end of the animation, so when this happens it triggers the onmouseout event. Try using the fadeTo() function

[jQuery] Re: calling jquery cycle function from flash

2008-10-01 Thread Mary Beth Snyder
Good question. I opted not to put the photos in flash because it was conflicting with the content below the images. The 3 boxes I have at the bottom have a negative margin to bring them up and above the images, and that was giving me headaches with flash, mostly with mac FF, of all things. :) On

[jQuery] Re: Mechanics of jQuery

2008-10-01 Thread MorningZ
To add he has been working on (and presenting here @ The Ajax Experience) a brand new engine called Sizzle Some of these posts have some talk of what's under the hood http://www.google.com/search?q=john+resig+sizzle And yesterday here at the conference he gave a good talk on it, i could

[jQuery] Re: Jquery validation messages repeating

2008-10-01 Thread Jörn Zaefferer
Could you post a testpage? Jörn On Wed, Oct 1, 2008 at 8:30 AM, prakash matte [EMAIL PROTECTED] wrote: When i press the submit button of a form, it is showing the corresponding error message by the side of the text field. But when i press the submit button again, the error message is

[jQuery] Re: select data in a p ignoring the span

2008-10-01 Thread dasacc22
For sure, childNodes is the way to go if its always constantly going to be like that, another possibility is to regex it $(p).html().match(/.+(?=.+?.+\/.+?)/) and if you wanted p text on the other side of the span you could do it like this ** javascript regex doesn't support lookbehind so you

[jQuery] Re: [validate] Validation max number of checkboxes

2008-10-01 Thread Jörn Zaefferer
input name=box class=required maxlength=5 / Just put the class and maxlength attribute on the first checkbox. See also the example here: http://jquery.bassistance.de/validate/demo/radio-checkbox-select-demo.html Jörn On Tue, Sep 30, 2008 at 4:37 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

[jQuery] Re: jQuery validation plugin in Drupal

2008-10-01 Thread Jörn Zaefferer
Could you summarize the problem again? I looked at the testpage and couldn't see anything wrong with it. Jörn On Tue, Sep 30, 2008 at 6:16 PM, Jeroen Coumans [EMAIL PROTECTED] wrote: Could it have something to do with the fact that each id starts with edit-? When I try it with manually

[jQuery] Re: JQuery Cycle Question

2008-10-01 Thread sorahn
Double post... just ignore this one. Thanks. On Oct 1, 2:47 am, sorahn [EMAIL PROTECTED] wrote: Hey guys, i just had a quick question about settings for the jquery pager.  I've got it doing mostly what i want, but i'm wondering if it's possible to invoke a pause when you hover over a pager

[jQuery] Re: async treeview - disable ajax call for node collapse

2008-10-01 Thread Jörn Zaefferer
I can't confirm the issue. Can you post a testpage? Jörn On Tue, Sep 30, 2008 at 12:37 AM, vm123 [EMAIL PROTECTED] wrote: The async treeview seems to be making an ajax call when a node is expanded as well as collapsed. We would like it to make the call only on expand and not for collapse.

[jQuery] Re: Valdiation plugin request

2008-10-01 Thread Jörn Zaefferer
So far the recommended approach can be seen in this demo: http://jquery.bassistance.de/validate/demo/multipart/ I'm working on a different solution, which should be easier to use, where you specify rules for all elements like you're used to, but also specify which subform should be validated,

[jQuery] offline docs

2008-10-01 Thread Dan Baughman
The docs.jquery.com site doesn't lend to easily making available offline via wget (or am I missing something) is there any sort of offline availability there? I am unable to access the web in the environment I work in so it's kind of a pain.

[jQuery] Re: Setting the selected item in a combo box

2008-10-01 Thread Pete
And, as a follow up: The code was originally found here: http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/ I added the following to the combo.js: // Add another settings option var defaults = {hidetarget: true, indicator: false, pageload: false, selectValue:

[jQuery] Re: Ajax Tabs and jqModal

2008-10-01 Thread Steffan A. Cline
on 9/30/08 2:03 PM, Klaus Hartl at [EMAIL PROTECTED] wrote: On 30 Sep., 18:25, Steffan A. Cline [EMAIL PROTECTED] wrote: Thanks for the quick answer! I did realize that the issue was that the items did not exist at the time of binding. I am new to jQuery and am trying to understand all the

[jQuery] Help with plugin release editing

2008-10-01 Thread fabiomcosta
Hi all, I've made a plugin and made a mistake with one release, now i can't edit, or even delete.. the plugin is this: http://plugins.jquery.com/project/meioMask And the mistake is tht i've put the compressed version of the plugin saying that it is compatible with version 1.0 of jQuery and it

[jQuery] JQuery Cycle Question

2008-10-01 Thread sorahn
Hey guys, i just had a quick question about settings for the jquery pager. I've got it doing mostly what i want, but i'm wondering if it's possible to invoke a pause when you hover over a pager item. Right now when you hover it changes to that item, then continues about it's business cycling

[jQuery] Re: jquery anchor

2008-10-01 Thread Ariel Flesler
Check my plugin :) -- Ariel Flesler http://flesler.blogspot.com On Sep 30, 4:05 am, elvisparsley [EMAIL PROTECTED] wrote: I am wondering how can I do like this,   http://davidwalsh.name/dw-content/smooth-scroll.php, with jquery. What I want to do is that a smooth move when I click an

[jQuery] Re: ScrollTo problems

2008-10-01 Thread Ariel Flesler
Heh, you're including jQuery twice. Thus overriding the plugins. As for $('div.name').localScroll(...); Try: $.localScroll(); Cheers -- Ariel Flesler http://flesler.blogspot.com On Sep 29, 10:08 pm, nika [EMAIL PROTECTED] wrote: Hi I have been trying to use the scrollTo plug in.. but i

[jQuery] Hover Events Can't Keep Up With FadeIn and FadeOut? Events Queue?

2008-10-01 Thread Joe
Go here: http://www.uisore.com/dev/new_placard/ Now, mouseover the first thru the fifth thumbnails at the bottom really quickly and then back from the fifth to the first thumbnail really quickly. You'll notice that it has to cycle thru all the thumbnails' animations (fadeIn/Out) until it

[jQuery] List. Is this possible?

2008-10-01 Thread shapper
Hello, I have three inputs A, B and C and button. This is a group inside a form. When I click the button I want to add the information on the inputs into a list under the button. The information must be displayed as A ( B ) ( C ) and have a small button on the right to remove from list. When

[jQuery] local/serial scroll with fades?

2008-10-01 Thread yabdab
Hey all, I am hacking around with the coda-slder... http://jqueryfordesigners.com/demo/coda-slider.html ...and wondered if there was a simple way to have the panels fade in/ out as they scroll left/right?

[jQuery] Re: I want to reduce the header calls

2008-10-01 Thread jeremyBass
Even if you can capture the HTTP request at the server what are you going to do with it? No I want to capture it on the client side so it never has to go and wait for the server to answered... The idea is if I cannot have to make a request I don't want to... I think this would be quicker then

[jQuery] Re: Assign 'active' to nav element

2008-10-01 Thread Bradley Sepos
Just extend Michael's code a bit: $(this).addClass('active').siblings().removeClass('active'); Bradley~ On Oct 1, 3:47 am, yellowboy [EMAIL PROTECTED] wrote: Well I should also say I want it to deselct when another h2 element is clicked. Michael Geary-3 wrote: That's no problem, we

[jQuery] Animation sequences

2008-10-01 Thread MadBrain
Hello, jQuery and all new to me and let me know if anyone among you have a technique that could help me with my problem. I try to make 3 animation sequences one after the other. The problem is that I am unable to complete the animation sequences. They all begin at the same time. Does anyone ever

[jQuery] html() doesn't work for me. innerHTML() do. Why?

2008-10-01 Thread krlosnow
Hello all: I'm newby in jquery, and I have the next problem: I've a form working with the form plugin. It works fine. I have the next callback method: function showResponse(responseText, statusText){ alert(responseText); $('#frameBody').html(responseText); alert

[jQuery] jCarousel scroll by 4 breaks in tail section

2008-10-01 Thread [EMAIL PROTECTED]
I'm having a strange problem with a customised jCarousel I'm working on. The carousel has 16 dynamically loaded items, 4 are visible and it scrolls by 4. The prev/next buttons are custom and wrap is set to both. Everything works fine until it gets to the 4th page of items, where it will only

[jQuery] Licenses

2008-10-01 Thread Tomy Lucadamo
Hi all! I am using jQuery in a web project for scrolls, accordions and slideshows. The client belives that the website become an open source because we are using an open source library. Is this correct? If I use an open source library all the project must be open source? How can I refuse this

[jQuery] Re: html() doesn't work for me. innerHTML() do. Why?

2008-10-01 Thread krlosnow
I've solved my problem. The jsp that generates the html was not including the struts html taglib, and the element html:errors / wash crashing the jquery. Well, I'll continue learning jquery. Best regards: Carlos. krlosnow wrote: Hello all: I'm newby in jquery, and I have the next

[jQuery] Re: jEditable Clone Referring to the Original Element, livequery ok to use?

2008-10-01 Thread Wayne
Wow! Hey, that actually worked. I don't fully understand why, though. I thought that clone(true) simply allowed for jQuery to grab a clone from the new clone. Does livequery duplicate or interfere with that procedure? Thanks for digging into my code, Brandon. I seem to be working, now. -Wayne

[jQuery] Re: dealing with multiple forms having same id

2008-10-01 Thread Donkeybob
XHTML standards based development states that the id attribute must be unique. So if you want you pages to have valid markup, use the class attribute. from w3c: - id = ID The id attribute assigns an identifier to

[jQuery] Re: Licenses

2008-10-01 Thread Scott Stewart
The open source license applies only to the code that invokes it: IE JQuery is released under GPL and MIT, however these licenses apply only to JQuery, and the really basic jist of these licenses are give credit where credit is due, and we have some legal recourse if you don't Have your

[jQuery] Re: Adding class to a parent element- traversion help?

2008-10-01 Thread Vinoj
Grr, well that didn't work. But I understand the basic premise of it, so thank you. -v On Sep 30, 9:55 pm, ricardobeat [EMAIL PROTECTED] wrote: Try an ugly filter function: $(.bc-wrapper).filter(function(){     return !/^\s+$/.test(this.textContent); // \s is a shorthand for

[jQuery] Re: Adding class to a parent element- traversion help?

2008-10-01 Thread Steve Schnable
How can I unsubscribe it? Steve

[jQuery] Re: Licenses

2008-10-01 Thread Steve Schnable
How can I unsubscribe it? Steve

[jQuery] Re: Include Scripts

2008-10-01 Thread alexanmtz
I develop a script that insert javascript and css on demand and you have the options to execute callback after the script has loaded http://plugins.jquery.com/project/includedemand This way you can load the scripts for the specific page that are used. I hope it helps, Alexandre Magno Web

[jQuery] Passing a variable to a function

2008-10-01 Thread andrewsquidge
Hi guys, I've been trying to get this literally all day! I just can't work it out. I've got this HTML: ul li class=evname 1 This is the event name /li li class=evsumsome text here/li /ul On click of li class=evname the li beneath should reveal. But because there are many of these ona page

[jQuery] Problem with JQuery Form, file upload and success option

2008-10-01 Thread kojilab
Hi, The code in my success option does not execute when I have a simple form with a file field. When I use a form without a form field, it works. Here's the code form id=photo_upload_form action=/upload enctype=multipart/ form-data input type=hidden name=MAX_FILE_SIZE value=100 / div

[jQuery] Re: Passing a variable to a function

2008-10-01 Thread MorningZ
So, and if am understanding correctly... you have this html an are after some sort of accordion like behavior ul li class=evnameEvent 1 Name/li li class=evsumSummary of Event 1/li li class=evnameEvent 2 Name/li li class=evsumSummary of Event 2/li li class=evnameEvent 3

[jQuery] Re: Problem with JQuery Form, file upload and success option

2008-10-01 Thread kojilab
My mistake. I was doing something wrong in the back end code and since I couldn't see the response, I thought it was the success option. On Oct 1, 11:31 am, kojilab [EMAIL PROTECTED] wrote: Hi, The code in my success option does not execute when I have a simple form with a file field. When

[jQuery] jQuery Cycle Lite Plugin

2008-10-01 Thread angel
Hi, I've spent hours but couldn't make it work. I don't know what I'm missing. Can you please check http://www.chorka.com/jquery/jquery.html and comment? Regards, Sultan Arefin

[jQuery] Re: Passing a variable to a function

2008-10-01 Thread amidude
I'm new to jquery as well. But I'm wondering if something like this wouldn't work. $(function() { $(.evname a).click(function() { $(this.hash).slideToggle(500); return false; }); }); You would, of course,

[jQuery] Re: XHTML Selector Nightmare

2008-10-01 Thread Steve Schnable
How can I subscribe it? Steve

[jQuery] Re: Passing a variable to a function

2008-10-01 Thread Steve Schnable
How can I subscribe it? Steve

[jQuery] Re: Problem with JQuery Form, file upload and success option

2008-10-01 Thread Steve Schnable
How can I subscribe it? Steve

[jQuery] Re: Licenses

2008-10-01 Thread Steve Schnable
How can I subscribe it? Steve

[jQuery] Re: Include Scripts

2008-10-01 Thread Steve Schnable
How can I subscribe it? Steve

[jQuery] Re: form select...

2008-10-01 Thread GARIL
form Select your favorite fruit: select id=fruits optionApple/option optionOrange/option optionPineapple/option optionBanana/option /select /form In the form above how do I programmatically set using jQuery the Pineapple option as the selected default?

[jQuery] XHTML Selector Nightmare

2008-10-01 Thread greenteam003
I really don't know why I'm having such a hard time with this (maybe its the two monsters and three cups of coffee) but I'm trying to select a range of rows in a 1000 row xhtml table, between starting row with class sMarker and ending row with class eMarker. I'm trying to use the following

[jQuery] math with form fields

2008-10-01 Thread amidude
Okay here's my form for a BMI Calculator I'm making. form action= id=bmiCalc onsubmit=return false; fieldset legendYour BMI/legend ol lilabel for=heightHeight/label select id=feet class=textfield option

[jQuery] Re: math with form fields

2008-10-01 Thread Bil Corry
amidude wrote on 10/1/2008 2:50 PM: the math part is pretty fuzzy too. For the math part, you might look at the Calculation plugin: http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm - Bil

[jQuery] Re: form select...

2008-10-01 Thread GARIL
Thank your for your answers but I don't want to set the value. What I want to happen is to programmatically change the select into: BEFORE AFTER form form Select your favorite fruit: Select your favorite

[jQuery] Re: math with form fields

2008-10-01 Thread amidude
I've read over that and it's not helping much as it does very simple math. I'm not a math genius by any means. But that didn't look like it did anything other than add or subtract. The math I need to calculate the BMI is a little more involved. On Oct 1, 3:09 pm, Bil Corry [EMAIL PROTECTED]

[jQuery] Re: math with form fields

2008-10-01 Thread amidude
Plus the calc plugin relies on the user inputting data into a field whereas I have them just selecting a number for their height in feet and inches. I thought it would be easier. On Oct 1, 3:20 pm, amidude [EMAIL PROTECTED] wrote: I've read over that and it's not helping much as it does very

[jQuery] Re: XHTML Selector Nightmare

2008-10-01 Thread Erik Beeson
Try this: $('.sMarker ~ row', myTable).not($('.eMarker ~ row', myTable)) That will get what you want, but I think it won't include the .sMarker row. To get .sMarker also, maybe try: $('.sMarker,.sMarker ~ row', myTable).not($('.eMarker ~ row', myTable)) You can also do it by index without

[jQuery] invalid object initializer

2008-10-01 Thread [EMAIL PROTECTED]
Hello, I'm very in-experienced in javascript, this is my second javascript / jQuery experiment. I was wondering if someone could tell me what I'm doing wrong: I have the following code if ( \$(e.target).is('.legacy_view') ){ \$(#loading).toggle(); var

[jQuery] Re: form select...

2008-10-01 Thread Josh Nathanson
Did you try my code? It should do what you describe. -- Josh - Original Message - From: GARIL [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, October 01, 2008 1:12 PM Subject: [jQuery] Re: form select... Thank your for your answers but I don't

[jQuery] Re: form select...

2008-10-01 Thread Josh Nathanson
Give this a go: $(option,#fruits).each(function() { $(this).attr(selected, $(this).text() == 'Pineapple' ); }); -- Josh - Original Message - From: GARIL [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, October 01, 2008 12:38 PM Subject:

[jQuery] Re: form select...

2008-10-01 Thread greenteam003
You could achieve this by using $('#fruits').val('Banana'). All of this is available in the jquery api docs if you take a look. Take a look at http://docs.jquery.com/Attributes http://docs.jquery.com/Attributes for examples of what you're trying to accomplish with the select elements.

[jQuery] Re: form select...

2008-10-01 Thread GARIL
I did. Thanks Josh. I modified it in such a way that given an index x I can write: $(#fruits option).get(x).selected = true; And that did it. --- On Oct 1, 3:36 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Did you try my code? It should do what you describe. --

[jQuery] Bind event to tab selection in 1.1

2008-10-01 Thread Dan Baughman
Ok so I had something really cool setup in 1.3, then I saw Klaus' history object doesnt' integrate with tabs 3! Does anyone know how to bind events to the tab selection action in JQuery 1.1? I'm just trying to focus on one the fields in the tab content area. I have tried the tabs().bind() and

[jQuery] Order of elements in a jquery object

2008-10-01 Thread Geoffrey Knutzen
I make a query, say using a class selector. I will get a jquery object back. I can iterate over that object using each(). Is there a guaranteed order that the elements in this object will be exposed in the each loop? If so, what is it? I have looked around and I can't seem to find this

[jQuery] Re: XHTML Selector Nightmare

2008-10-01 Thread Christopher Greenwood
*This message was transferred with a trial version of CommuniGate(r) Pro* Thanks Erik. That worked perfectly. It was one of those duh... moments as I read your email. I tried taking the not filter out of the initial expression and chaining it onto the end but still only used an

[jQuery] Re: XHTML Selector Nightmare

2008-10-01 Thread Christopher Greenwood
Thanks Erik. That worked perfectly. It was one of those duh... moments as I read your email. I tried taking the not filter out of the initial expression and chaining it onto the end but still only used an expression rather than using a Jquery array. I did notice the index method is

[jQuery] Re: math with form fields

2008-10-01 Thread amidude
I shouldn't be trying to do this in jquery should I? On Oct 1, 3:31 pm, amidude [EMAIL PROTECTED] wrote: Plus the calc plugin relies on the user inputting data into a field whereas I have them just selecting a number for their height in feet and inches. I thought it would be easier. On Oct

[jQuery] Re: invalid object initializer

2008-10-01 Thread [EMAIL PROTECTED]
I've also tried this: if ( \$(e.target).is('.legacy_view') ){ \$(#loading).toggle(); var thequery = \$(input#legacy_data).val(); alert (thequery); \$(#query).load(/storeops/invoices/invoice.pl, {thequery}, function(){

[jQuery] Re: jQuery validation plugin in Drupal

2008-10-01 Thread Jeroen Coumans
Drupal generates input fields with an id like edit-profile-name. The jQuery validator plugin seems to ignore those fields completely, at least on the form at http://lab.jeroencoumans.nl/register/ (which is the generated HTML from a custom Drupal registration form). Quoting the id when referencing

[jQuery] Re: Hover Events Can't Keep Up With FadeIn and FadeOut? Events Queue?

2008-10-01 Thread Joe
Still no luck. Been trying to keep track of a flag value and it doesn't help at all. Any suggestions? On Oct 1, 9:40 am, Joe [EMAIL PROTECTED] wrote: Go here: http://www.uisore.com/dev/new_placard/ Now, mouseover the first thru the fifth thumbnails at the bottom really quickly and then

[jQuery] simple jquery snake game, some feedback appreciated

2008-10-01 Thread Richard W
Hi all I recently make a classic old school snakey game using jQuery. It was a lot of fun, and something I'd been wanting to do since I was young. It ain't no serious game, more like proof of concept? Anyways, it's kinda fun. It supports levels, wall obstacles, snake growth etc. I've just create

[jQuery] Re: jQuery validation plugin in Drupal

2008-10-01 Thread Jeroen Coumans
Ok, I've further debugged this, trying to find the exact circumstances in which the validator doesn't work. Now I noticed that the values of the name and id attributes of input fields aren't the same. I've created a fixed version: http://lab.jeroencoumans.nl/register/index-fixed-name.html And

[jQuery] Re: invalid object initializer

2008-10-01 Thread [EMAIL PROTECTED]
Basically what I need done is i need thequery variable evaluated to be my string of params. like Value1: 1, Value2: 2, but I think jQuery thinks thequery is similar to declaring value1, it doesnt know any better. Is there anyway to say This is a variable, evaulate it!? On Oct 1, 4:08 pm, [EMAIL

[jQuery] unsubscribe

2008-10-01 Thread Steve Schnable
unsubscribe!

[jQuery] Re: unsubscribe

2008-10-01 Thread Erik Beeson
Perhaps you're looking for: http://groups.google.com/group/jquery-en/subscribe --Erik On Wed, Oct 1, 2008 at 4:18 PM, Steve Schnable [EMAIL PROTECTED] wrote: unsubscribe!

[jQuery] jCarousel Width Problems

2008-10-01 Thread craq
Hi. I'm have a big problem with the reload() event for all browsers, and some weirdness in IE 6 / 7. I thought I posted this earlier, but doesn't look like it made it on. Basically my problem looks to be with how carousel is figuring out the width / left position.. in the reload() event,

[jQuery] jcarousel support

2008-10-01 Thread craq
Hi There. I'm having a weird problem with jCarousel but I think I've narrowed down a lot. So I believe these issues are related, but 1 is to do with IE (both 6 / 7) and the other happens in all browsers (firefox 3 included). To make this happen in Firefox, you'd have to toggle the carousel 1

[jQuery] jQuery method's don't work when adding HTML to page

2008-10-01 Thread blugrasmaniac
I have a lightbox variation (boxy to be specific) that I am using to load some remote HTML via AJAX. Inside of the remote HTML, which is basically a login panel, I have some javascript to process the login. However, the normal jQuery methods don't have any affect on the elements inside of the

[jQuery] Problem Finding Children

2008-10-01 Thread DrPunchman
I need to fade the image associated to the inputs that have been checked. Jquery: $('input:checked').each(function(k,s){ $( [EMAIL PROTECTED]'+s.id+'] ) .find( span div img ).fadeTo(fast,0.5); }); Sample html: td id=Cell.1.0 style=vertical-align: Bottom;

[jQuery] jEditable plugin

2008-10-01 Thread Dr3adl0ck
Is there a way to toggle the editable functionality? I'd like to activate/deactivate making an edit in place field editable depending on if a user selects something. Is there a way in jQuery remove events associated with a class or something to that effect? Thanks!

[jQuery] There must be a better way to write this

2008-10-01 Thread ferdjuan
I'm trying to fade an element out, then fade it's next sibling out, with no predetermined amount of elements. Here is an example of how I have it now but with only 3 elements: function fadeEmOut(){ var kid = $('#folio').children(); kid.eq(0).fadeOut(function(){

[jQuery] On writing beautiful code

2008-10-01 Thread Chris Tan
I'm fairly new to Javascript and although I have become familiar with the jQuery library, I still have no idea how to structure my code cleanly. My current project (http://www.pycmds.org) has risen to about 300 lines of code and although it works, it's basically spaghetti. So I'd appreciate

[jQuery] Re: jQuery Cycle Lite Plugin

2008-10-01 Thread Mike Alsup
I've spent hours but couldn't make it work. I don't know what I'm missing. Can you please checkhttp://www.chorka.com/jquery/jquery.html and comment? You forgot to include jQuery. You need to include it before cycle: script type=text/javascript src=jquery-1.2.6.js/script script

[jQuery] Re: jQuery validation plugin in Drupal

2008-10-01 Thread Jörn Zaefferer
Could you reduce your non-working testpage to just one non-working element? I still can't see the issue. The validation seems to work just fine. Jörn On Wed, Oct 1, 2008 at 11:57 PM, Jeroen Coumans [EMAIL PROTECTED] wrote: Ok, I've further debugged this, trying to find the exact circumstances

[jQuery] Re: List. Could someone help me in doing this?

2008-10-01 Thread Mike Alsup
Why don't you show us what you have so far? On Oct 1, 9:29 pm, shapper [EMAIL PROTECTED] wrote: Hello, On a page I have two inputs, A and B, a select, C, and a button. I also have an unordered list. When the button is pressed the content of A, B and C should be put together into a

[jQuery] Re: jQuery method's don't work when adding HTML to page

2008-10-01 Thread Mike Alsup
Hard to say without seeing the code. It could be something as simple as a bad selector. Can you post a link? On Oct 1, 5:11 pm, blugrasmaniac [EMAIL PROTECTED] wrote: I have a lightbox variation (boxy to be specific) that I am using to load some remote HTML via AJAX.  Inside of the remote

[jQuery] chained select - IE mobile/iphone/Opera Mobile

2008-10-01 Thread [EMAIL PROTECTED]
Hi All, I've been using the jquery based chained select ( http://www.codeassembly.com/Simple-chained-combobox-plugin-for-jQuery/ ) for a site im working on all works in a normal desktop based browser (even IE :) ) but when i tested on the mini/mobile browser it didnt work - they have a custom

  1   2   >