Re: [jQuery] Textarea: redux

2006-08-15 Thread Mike Alsup
> Have you try emptying your cache and restarting IE. Sometimes IE cache gets > corrupted and It stop responding in a predictable manner. That's a good idea. Also, try to ween down the page as much as possible to pin-point the problem; strip out everything you can. "value" is the dom property tha

Re: [jQuery] Textarea: redux

2006-08-15 Thread kenton.simpson
Have you try emptying your cache and restarting IE. Sometimes IE cache gets corrupted and It stop responding in a predictable manner. Chad Lansford wrote: > > Size returns "1". > > Funny you ask, I actually just finished going over the HTML... yeah, it's > definitely unique. > > On 8/15/06, Kl

Re: [jQuery] Textarea: redux

2006-08-15 Thread Chad Lansford
Size returns "1".Funny you ask, I actually just finished going over the HTML... yeah, it's definitely unique.On 8/15/06, Klaus Hartl < [EMAIL PROTECTED]> wrote: Chad Lansford schrieb:> thanks klaus...>> still no luck.  i tried $('#SendMessage1_txtMessageBody').get(0).value,> $('#SendMessage1_txtMes

Re: [jQuery] Textarea: redux

2006-08-15 Thread Klaus Hartl
Chad Lansford schrieb: > thanks klaus... > > still no luck. i tried $('#SendMessage1_txtMessageBody').get(0).value, > $('#SendMessage1_txtMessageBody').get(0).innerText and > $('#SendMessage1_txtMessageBody').get(0).innerHTML. still getting > nothin... Ok, what does $('#SendMessage1_txtMe

Re: [jQuery] Textarea: redux

2006-08-15 Thread Chad Lansford
thanks klaus...still no luck.  i tried $('#SendMessage1_txtMessageBody').get(0).value, $('#SendMessage1_txtMessageBody').get(0).innerText and $('#SendMessage1_txtMessageBody').get(0).innerHTML.  still getting nothin... On 8/15/06, Klaus Hartl <[EMAIL PROTECTED]> wrote: Chad Lansford schrieb:> thank

Re: [jQuery] Textarea: redux

2006-08-15 Thread Klaus Hartl
Chad Lansford schrieb: > thanks for responding realazy, but it didn't work. > > i've tried: val(), text(), and html() all to no avail. try ($('#SendMessage1_txtMessageBody ").get(0).value -- Klaus ___ jQuery mailing list discuss@jquery.com http:/

Re: [jQuery] Textarea: redux

2006-08-15 Thread Chad Lansford
thanks for responding realazy, but it didn't work.  i've tried: val(), text(), and html() all to no avail.On 8/15/06, Realazy XA Chen < [EMAIL PROTECTED]> wrote:the content in textarea should be innerHTML? try .html() hope this help :)2006/8/15, Chad Lansford <[EMAIL PROTECTED]>: Ah, one HUGE issu

Re: [jQuery] Textarea: redux

2006-08-15 Thread Realazy XA Chen
the content in textarea should be innerHTML? try .html()hope this help :)2006/8/15, Chad Lansford <[EMAIL PROTECTED]>: Ah, one HUGE issue that I forgot to mention is that it IS working in Firefox, but not in IE.Chad On 8/15/06, Chad Lansford < [EMAIL PROTECTED]> wrote:I've tried everything I can th

Re: [jQuery] Textarea: redux

2006-08-15 Thread Chad Lansford
Ah, one HUGE issue that I forgot to mention is that it IS working in Firefox, but not in IE.ChadOn 8/15/06, Chad Lansford < [EMAIL PROTECTED]> wrote:I've tried everything I can think of, and I'm still having no luck.  I am at my wits end! If I set the textarea's value to "abc" ($('#SendMessage1_txt

Re: [jQuery] Textarea: redux

2006-08-15 Thread Chad Lansford
I've tried everything I can think of, and I'm still having no luck.  I am at my wits end!If I set the textarea's value to "abc" ($('#SendMessage1_txtMessageBody ").val("abc")), it shows up in the textarea correctly.  But when I change the value in the textarea, and try to get the updated value ($(#

Re: [jQuery] Textarea: redux

2006-08-11 Thread ashutosh bijoor
A much neater way to do what you need is to use the Form Serializer. This allows you to get values of all the inputs at one go, and you can then submit them. And there is also a de-serializer plugin that allows you to set values from a JSON into the form. The form serializer is in the svn version i

Re: [jQuery] Textarea: redux

2006-08-11 Thread Matt Stith
jQuery might be a little slow for this need, try using regular DOM selectors, it would be faster and easier.On 8/10/06, Chad Lansford < [EMAIL PROTECTED]> wrote:I'm new to jQuery, and I'm having a problem grabbing the value from a textbox or textarea. I searched the past discussions and found this

[jQuery] Textarea: redux

2006-08-10 Thread Chad Lansford
I'm new to jQuery, and I'm having a problem grabbing the value from a textbox or textarea.I searched the past discussions and found this issue:http://jquery.com/discuss/2006-July/008603/ This is basically what's happening to me, but I couldn't find the resolution I was hoping for in the past discus