[jQuery] Re: Ensure Textarea has been read.

2008-06-13 Thread Glen Lipka
a and checkbox, I've > > changed the id's in the JS snippet to match up with the id's of the > fields: > > > > > > $('#terms').scroll(function(){ > >if( $(this).scrollTop() == $(this).height() ) > > $('#agree&#x

[jQuery] Re: Ensure Textarea has been read.

2008-06-13 Thread Ariel Flesler
fields: > > >         $('#terms').scroll(function(){ >            if( $(this).scrollTop() == $(this).height() ) >              $('#agree').attr('disabled', false); }); > > > Any suggestions on this? > > Cheers mate, > > Rob > > > &g

[jQuery] Re: Ensure Textarea has been read.

2008-06-13 Thread Robert Rawlins
x27;, false); }); Any suggestions on this? Cheers mate, Rob -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ariel Flesler Sent: 13 June 2008 16:40 To: jQuery (English) Subject: [jQuery] Re: Ensure Textarea has been read. I haven't teste

[jQuery] Re: Ensure Textarea has been read.

2008-06-13 Thread Ariel Flesler
I haven't tested this, but it should be something like this: $('#terms').scroll(function(){ if( $(this).scrollTop() == $(this).height() ) $('#submit').attr('disabled', false); }); Cheers -- Ariel Flesler http://flesler.blogspot.com On 13 jun, 10:44, Sir Rawlins <[EMAIL PROTECTED]> wrote