Birgit Pauli-Haack schrieb:
> 
> I have some data in an js associative array:
> 
> texts = new Array;
> texts.webmail = "Go directly to Web e-mail.  The easy way to read and 
> write e-mail when you are away from home.";
> texts.dsl ="Complete information on the DSL service.";
> texts.members = "Member information and downloads."

You say you have an associative array so you should use one. Abusing an 
array (list) for that is considered bad practice.

var texts = {}; // short for new Object();

...



-- Klaus

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to