RE: php and javascript

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> -----Original Message-----
> From: Richard Lynch
> To: Marek Kilimajer
> 
> On Sun, April 10, 2005 4:32 pm, Marek Kilimajer said:
> > Assuming your form is named "Selection", you will have a javascript
> > array document.forms['Selection'].elements['distID[]'] available. You
> > can try:
> >
> > alert(document.forms['Selection'].elements['distID[]'][0].value);
> 
> I can GUARANTEE this will *NOT* work.
> 
> You *CANNOT* use [] as part of a 'name' in JavaScript.

That's completely untrue -- I've done it many times with complete success.
The above can even be written more concisely as

  alert(document['Selection']['distID[]'][0].value);

Cheers!

Mike


To view the terms under which this email is distributed, please go to http://disclaimer.leedsmet.ac.uk/email.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux