[jQuery] Variables

2009-12-11 Thread Jojje
Hi all! I'm adding a userCheck method to the validation plugin. It checks if the username i available, and if not an error message diplays, its done with ajax, my script does not work properly. I'm pretty new to javascript and jquery so maybe its an easy problem... its done with ajax and if the

[jQuery] Variables in IE ahhh!

2009-06-26 Thread simon
I have this hover function and outside this i am setting all the variables etc everything works but when I test on IE yes that old one, is gives me the wrong reading and hence does not function, so to get over this I have to put in the variable within the hover function. any ideas how to combat

[jQuery] Re: JQuery variables

2008-06-20 Thread Neilz
Thanks for this response. Unfortunately, I am left with the problem that Internet Explorer doesn't seem to like the syntax $(#createNewAccount). It works fine in firefox - any suggestions please? On Jun 19, 10:33 pm, Hamish Campbell [EMAIL PROTECTED] wrote: Hi there. Best (or fastest) way

[jQuery] Re: JQuery variables

2008-06-20 Thread Isaak Malik
The use of jQuery's $(#createNewAccount). is cross-browser so you shouldn't worry about IE. On Fri, Jun 20, 2008 at 11:42 AM, Neilz [EMAIL PROTECTED] wrote: Thanks for this response. Unfortunately, I am left with the problem that Internet Explorer doesn't seem to like the syntax

[jQuery] JQuery variables

2008-06-19 Thread [EMAIL PROTECTED]
Hi all. I've done some searching, but being new to this am struggling to find what I'm after even though I'm sure the answer is simple. I'm in at the deep end working with a webapp that uses JQuery, I presume with various plugins for form validation. I have some code as follows:

[jQuery] Re: JQuery variables

2008-06-19 Thread Hamish Campbell
Hi there. Best (or fastest) way to find out if something is in the DOM is to check: if ( $(#createNewAccount).length ) If .length is greater than 0 it will exist. So your script can read: $(document).ready(function() { if ( $('#createNewAccount:checked').length || !$

[jQuery] Re: JQuery variables

2008-06-19 Thread Isaak Malik
#createNewAccount does not stand for a variable but for an ID attribute. To check if the element exist you can check if it contains a value, if it does by default or check if it contains any HTML inside the tags. On Thu, Jun 19, 2008 at 4:10 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-13 Thread Web Specialist
@googlegroups.com Sent: Thursday, April 10, 2008 1:17 PM Subject: [jQuery] Re: How do I use ColdFusion and jQuery variables for pagination? Thanks for the reply, Josh... I think the part that I'm not understanding is the dump the whole query to the client and then the plugin takes

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-13 Thread Rick Faircloth
Thanks for the tip, Marco. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Web Specialist Sent: Sunday, April 13, 2008 2:42 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: How do I use ColdFusion and jQuery variables for pagination? Hi Rick. I

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-12 Thread J Moore
and jQuery variables for pagination? Thanks for the reply, Josh... I think the part that I'm not understanding is the dump the whole query to the client and then the plugin takes care of the pagination. It also sounds like a memory and/or processor intensive way to get 20 records per page

[jQuery] How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick Faircloth
Hi, all... I'm a bit confused about how to get variables from jQuery that I can use in my ColdFusion code. In typical CF pagination, I use startrow and maxrows variables to limit the query output. How would I get these variables from the jQuery? I just can't piece together what's happening.

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Josh Nathanson
] To: jquery-en@googlegroups.com Sent: Thursday, April 10, 2008 12:19 PM Subject: [jQuery] How do I use ColdFusion and jQuery variables for pagination? Hi, all... I'm a bit confused about how to get variables from jQuery that I can use in my ColdFusion code. In typical CF pagination, I use startrow

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick
PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, April 10, 2008 12:19 PM Subject: [jQuery] How do I use ColdFusion and jQuery variables for pagination? Hi, all... I'm a bit confused about how to get variables from jQuery that I can use in my ColdFusion code. In typical CF

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Josh Nathanson
to determine which records to get from the database. -- Josh - Original Message - From: Rick [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Thursday, April 10, 2008 1:17 PM Subject: [jQuery] Re: How do I use ColdFusion and jQuery variables for pagination

[jQuery] Re: How do I use ColdFusion and jQuery variables for pagination?

2008-04-10 Thread Rick
Sent: Thursday, April 10, 2008 1:17 PM Subject: [jQuery] Re: How do I use ColdFusion and jQuery variables for pagination? Thanks for the reply, Josh... I think the part that I'm not understanding is the dump the whole query to the client and then the plugin takes care of the pagination