[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
Thank you. The Firebug suggestion was helpful. The error message is saying that getDirectorIds() is not defined. script type=text/javascript // make sure at least one checkbox is checked function validateSubmit() { if( $(input:checkbox:checked).length == 0 ) { alert( Please select at least one

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread Michael Lawson
: Calling other functions inside a function Thank you. The Firebug suggestion was helpful. The error message is saying that getDirectorIds() is not defined. script type=text/javascript // make sure at least one checkbox

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
                                                                    Date:       07/22/2009 11:21 AM                                                                                                 Subject:    [jQuery] Re: Calling other functions inside a function

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread Michael Lawson
Subject:[jQuery] Re: Calling other functions inside a function Is this the right way to do it ? script language=javascript type=text/javascript // this gets all of the director id_individual values

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
                                                                                                Subject:    [jQuery] Re: Calling other functions inside a function                                                           Is this the right way to do it ? script language=javascript type=text/javascript     // this gets all

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread Michael Lawson
Date: 07/22/2009 02:48 PM Subject:[jQuery] Re: Calling other functions inside a function

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
@googlegroups.com                                                                     Date:       07/22/2009 02:48 PM                                                                                                 Subject:    [jQuery] Re: Calling other functions inside a function

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Glazz
Hi, Can you please post the function that is not working in Firefox please? Regards On 21 Jul, 19:48, evanbu...@gmail.com evanbu...@gmail.com wrote: This is probably more of a basic javascript question than a specific jquery function.  I have this jQuery function named validateSubmit()

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Glazz
And btw... there's any return false in createCharts(); ? On 21 Jul, 19:53, Glazz brunofgas...@live.com.pt wrote: Hi, Can you please post the function that is not working in Firefox please? Regards On 21 Jul, 19:48, evanbu...@gmail.com evanbu...@gmail.com wrote: This is probably more

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread evanbu...@gmail.com
I was hesitant to post this because it's a lot of code but here it is script language=javascript type=text/javascript function GetXmlHttpObject() { var objXMLHttp=null try { objXMLHttp = new ActiveXObject(Msxml2.XMLHTTP); //later IE } catch (e) { try { objXMLHttp = new

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Glazz
H at first i dont see anything wrong, i see one thing, but if ie doesn't complain lol, close each line with ; maybe that works, but hey i'm just gessing, ie doesn't show any problem because of that lol Try putting alerts to verify if they show up On 21 Jul, 20:07, evanbu...@gmail.com

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Michael Geary
The reason this would happen is that you have a fatal error somewhere inside your createCharts() function. When this error occurs, it stops all JavaScript execution for the current event. Do you have any debugging tools such as Firebug? If not, install Firebug and try again. Open the Firebug