[jQuery] JQuery list moving from Google to Zoho?

2010-01-20 Thread Knight, Doug
Hi all, Can someone confirm that this list is moving from Google to Zoho Discussions? With the recent spate of cyber attacks I try to confirm emails like the one I got over the weekend to register at Zoho. Thanks, Doug

[jQuery] Re: post AJAX no response

2009-10-08 Thread Knight, Doug
cents, Doug -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of David Sent: Thursday, October 08, 2009 2:40 PM To: jQuery (English) Subject: [jQuery] post AJAX no response Hi, I have a problem with an AJAX call. It's a long time since

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Knight, Doug
Just my two cents, I have to agree, it would be nice to be able to at a minimum dump the actual XML from the Ajax call. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jonathan Sent: Wednesday, September 16, 2009 1:33 PM To: jQuery

FW: [jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-10 Thread Knight, Doug
Sure could use some help on this one. Does anyone on the list have any clue why the .text() function works differently between FF and IE7? I've submitted this question for over a week now, and had no suggestions at all. Doug From: Knight, Doug Sent: Tuesday, September 08, 2009 9:40 AM

RE: FW: [jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-10 Thread Knight, Doug
/html Thanks again, Doug -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Brett Ritter Sent: Thursday, September 10, 2009 9:18 AM To: jquery-en@googlegroups.com Subject: Re: FW: [jQuery] Re: Newbie: Cannot get .text() to work with IE7

[jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-08 Thread Knight, Doug
have access to an external public web site. Thanks in advance for anyone who can help. I have also included the web browser output from FF 3.5.2, and IE7 at the bottom of the email. Doug (snip) All, I'm new to jQuery, but not JavaScript. I have the following really simple html file

[jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-03 Thread Knight, Doug
Hi Leonardo, I caught that right after I posted. With it fixed, I still have the same issues between FF and IE7. Doug From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Leonardo K Sent: Wednesday, September 02, 2009 8:41 AM To: jquery-en@googlegroups.com Subject

[jQuery] RE: Newbie: Cannot get .text() to work with IE7

2009-09-02 Thread Knight, Doug
All, I wasn't sure if this got lost in the shuffle of my first post. Does anyone know why the following works under FF and not under IE7? There are comments within the code to explain what I'm seeing. Sorry, I don't have an external facing website on which to post this. Doug From: jquery-en

[jQuery] Newbie: Cannot get .text() to work with IE7

2009-08-31 Thread Knight, Doug
would be great, thanks! Doug Knight Here's the html/JavaScript: html head titleRead XML/title script src=lib/jquery.js type=text/javascript charset=utf-8/script script type=text

[jQuery] Re: jQuery Countdown and close button

2009-07-04 Thread Doug Avery
It looks like neither the Quiz or Quizc div ids have quotes around them...could that be it?

[jQuery] Re: Div and Button display as active and open only on certain pages

2009-07-04 Thread Doug Avery
So it sounds like you'd want to put a class like hasOverlay on the homepage body. body class=hasOverlay Then, create the function that makes your overlay appear. This function needs to be standalone, don't attach it to an event just yet because we'll need to access it two different ways. So

[jQuery] Re: Initial Setup

2009-07-04 Thread Doug Avery
* Can I reference the latest version, if so what would be the URL? The latest version would be the 1.3.2 mentioned in the comments. I don't believe Google provides a way to just get the 'latest', but you probably wouldn't want to, because jQuery can change how some functions work from version

[jQuery] Re: var $varname

2009-07-03 Thread Doug Avery
I was convinced that this was some kind of faster, special-er variable just for jQuery objects. Thanks to everyone on this thread for clarifying. If the value is numeric, which it is in this case, I wouldn't use the   $ or j. I only use $variableName when the value is a jQuery object.

[jQuery] Can the media plug by mike alsup display a statusbar?

2009-05-07 Thread Doug McCaughan
http://plugins.jquery.com/project/media I am trying to use a jquery plugin to embed a large wmv video. I'd like to show a loading spinner or other statusbar but the player immediately appears and sits black while waiting for the video to load. Are there any options? Thank you! Doug McCaughan

[jQuery] Pagination control jquery -- Need some help

2009-02-26 Thread Doug C
I wrote this jquery to basically dynamically build a paging control for long articles, etc I have it dynamically generating a UL, a page selector and a drop down selector and I just need to write a piece that will do a -Prev and Next - and my brain is having trouble with it. Here is the code

[jQuery] Re: Pagination control jquery -- Need some help

2009-02-26 Thread Doug C
(){ $('.page:visible').hide().next().show(); } You will pro On Feb 26, 5:43 pm, Doug C lietmo...@gmail.com wrote: I wrote this jquery to basically dynamically build a paging control for long articles, etc I have it dynamically generating a UL, a page selector and a drop down selector

[jQuery] Re: What is +new Date; in the function now()?

2008-06-16 Thread Doug Domeny
Thanks for the explanation. It's the unary plus operator! -Doug On Jun 11, 5:52 pm, Ariel Flesler [EMAIL PROTECTED] wrote: I actually added that, to save some bytes. now() is a private function, that is reused 5 or 6 times along the code. 1-newDateis the same asnewDate(). 2- +newDatecasts

[jQuery] Does jQuery know what the user has done?

2008-06-13 Thread Doug
Have a row that when clicked runs a jQuery function. On occasion a cell may have a link. What I would like is for the jQuery function to know if the user clicked the cell with a link or anyplace else in the row. If the user clicked the link the function would not run it's AJAX stuff and anywhere

[jQuery] What is +new Date; in the function now()?

2008-06-11 Thread Doug D
I'm not familiar with the JavaScript syntax of +new in the now() function in jQuery 1.2.5. Would you explain the plus (+) operator? How does it work? What does it mean? function now(){ return +new Date; } Is it the same as the following? function now(){ return new Date(); }

[jQuery] [validate] Possible to add form validation logic in multiple places?

2008-05-25 Thread Doug Mayer
, Doug

[jQuery] Re: [validate] Possible to add form validation logic in multiple places?

2008-05-25 Thread Doug Mayer
$.extend(validationOptions, { ... }); // generated $(...).validate(validationOptions); That would work with and without page-specific code. Jörn On Sun, May 25, 2008 at 5:36 AM, Doug Mayer [EMAIL PROTECTED] wrote: I'm working on an ASP.NET validation integration with jQuery

[jQuery] Re: [validate] Possible to add form validation logic in multiple places?

2008-05-25 Thread Doug Mayer
(validationOptions, { ... }); // generated $(...).validate(validationOptions); That would work with and without page-specific code. Jörn On Sun, May 25, 2008 at 5:36 AM, Doug Mayer [EMAIL PROTECTED] wrote: I'm working on an ASP.NET validation integration with jQuery, and there are some

[jQuery] Re: [validate] Possible to add form validation logic in multiple places?

2008-05-25 Thread Doug Mayer
, 2008 at 6:25 PM, Doug Mayer [EMAIL PROTECTED] wrote: Trying to implement this now... Working off of what you said, is there a way to do something like this? var validationOptions = { rules: { name: { required: true } } }; $.extend(validationOptions, { rules: { email: { required: true

[jQuery] Re: Is this bug in jquery???

2008-02-22 Thread Doug Sparling
IE6 and older only supports hover on anchor (a). IE7 does support hover on all elements, but only if you are not in quirks mode. On Feb 21, 12:52 pm, fshuja [EMAIL PROTECTED] wrote: i am using jquery version 1.2.3. I was trying to attach hover on area inside map. but find that its working ok

[jQuery] Best Practice

2007-11-02 Thread Doug
Hello All, I am a newbie and am trying to learn jQuery. I created this function: function getRecord(id,URL){ jQuery(#ResultsTable tr).filter(.selected).removeClass(selected); jQuery(#+id).addClass(selected); . It goes on to return a record. The first