Re: [Proto-Scripty] Trying to solve a error using $$

2011-12-24 Thread Marty Amberg
Thanks Walter That did the trick. I sometimes define variables as in php with the $. Just could not see it. Thanks again. On 12/23/2011 10:28 PM, Walter Lee Davis wrote: The problem here is that you're clobbering Prototype's $A() function, which is used to initialize and extend an

[Proto-Scripty] Trying to solve a error using $$

2011-12-23 Thread Marty Amberg
maybe some one could point me in the right direction. I use this code to extract the values from a table and if the table entry is blank it removes the tr element. The first time thru it works great. Updates the db and returns all to normal. The next time I get this error Thanks again.

Re: [Proto-Scripty] Trying to solve a error using $$

2011-12-23 Thread Walter Lee Davis
The problem here is that you're clobbering Prototype's $A() function, which is used to initialize and extend an array. Choose a different name for your variable in line 7 of your example -- anything that isn't also used in Prototype -- and you should be all set. $A is used all over the place