[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
                                        > >   To:         "jQuery (English)"                 >                                                   > >   Date:       07/22/2009 02:48 PM                                             >                    

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread Michael Lawson
To: "jQuery (English)" Date: 07/22/2009 02:48 PM Subject: [jQuery] Re: C

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
                                          > >   To:         "jQuery (English)"                 >                                                   > >   Date:       07/22/2009 02:18 PM                                             >                                                   > >   Subject:    [jQuery] Re: Calling other functions inside a function           >

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread Michael Lawson
To: "jQuery (English)" Date: 07/22/2009 02:18 PM

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread evanbu...@gmail.com
uot;jQuery (English)"                 >                                                   > >   Date:       07/22/2009 11:21 AM                                             >                                                   > >   Subject:    [jQuery] Re: Calling other functions inside a

[jQuery] Re: Calling other functions inside a function

2009-07-22 Thread Michael Lawson
To: "jQuery (English)" Date: 07/22/2009 11:21 AM Subject: [jQuery] Re: C

[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. // make sure at least one checkbox is checked function validateSubmit() { if( $("input:checkbox:checked").length == 0 ) { alert( "Please select at least one section for your PDF pro

[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 pane

[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" wrot

[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 function GetXmlHttpObject() { var objXMLHttp=null try { objXMLHttp = new ActiveXObject("Msxml2.XMLHTTP"); //later IE } catch (e) { try { objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP"); //earlier IE } c

[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 wrote: > Hi, > > Can you please post the function that is not working in Firefox > please? > > Regards > > On 21 Jul, 19:48, "evanbu...@gmail.com" wrote: > > > This is probably more of a basic javascript question t

[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" wrote: > This is probably more of a basic javascript question than a specific > jquery function.  I have this jQuery function named validateSubmit() > which calls two oth