Re: Function For Check box Is Undefined

2009-06-30 Thread Isaac Montague
Thanks for the information. I am learning this as I go. On Sat, Jun 27, 2009 at 6:39 PM, Mike Williams wrote: > > Javascript launched from HTML executes in global context, so it can only > see global variables and functions, but you've made your boxclick() > function local to initMap(). > > -- >

Re: Function For Check box Is Undefined

2009-06-27 Thread Mike Williams
Javascript launched from HTML executes in global context, so it can only see global variables and functions, but you've made your boxclick() function local to initMap(). -- Mike Williams http://econym.org.uk/gmap --~--~-~--~~~---~--~~ You received this messag

Function For Check box Is Undefined

2009-06-27 Thread idmontague
I created a test page to work with Mike Williams code about using checkboxes to turn markers on and off, http://masgis.asu.edu/sandiego/test3.html, and it works great. I then tried to implement it with the rest of my website and in firebug it says the boxclick function is undefined. I don't see