Current location: Hot Scripts Forums » General Web Coding » JavaScript » global variables in external file


global variables in external file

Reply
  #1 (permalink)  
Old 05-11-04, 10:10 AM
Dr-Leech Dr-Leech is offline
Newbie Coder
 
Join Date: Sep 2003
Location: Argentina
Posts: 19
Thanks: 0
Thanked 0 Times in 0 Posts
Question global variables in external file

Hi, i want to access from a function in the <head> of the main page, to a global variable stored in an external .js already loaded before in the <head>.


Example:
PHP Code:

external.js:
 var 
question = new Array();
 
question[1] = new Array();
 
question[1]["q"] = 'Lorem Impsun?';
 
question[1]["correctText"] = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin suscipit dignissim wisi. Pellentesque mattis dolor ac mauris. Sed iaculis ante sit amet lectus. Quisque at elit nec est vulputate congue. Duis imperdiet quam id mauris. Nunc lacinia tortor. Vivamus est leo, laoreet ac, vehicula ac, adipiscing eu, odio.';
 ....
 
etc
and in the main file:
PHP Code:

 <script type="text/javascript" src="functions.js"></script>
 <script language="JavaScript">
 var exam_num = 1;
 function confirm(answer) {
         bannerDisplay.innerHTML = '<some_html_code_to_print_result>'+question[exam_num]["correctText"]+'</some_html_code_to_print_result>';
 }
 </script> 
i cant access to 'question' var from the function..

Thanks in advance...
Reply With Quote
  #2 (permalink)  
Old 05-15-04, 02:28 PM
TwoD TwoD is offline
Community VIP
 
Join Date: Sep 2003
Location: 404
Posts: 1,813
Thanks: 0
Thanked 0 Times in 0 Posts
You probably can't access 'question' because it's globalized only within the first <script>-tag. remove the 'var'-statement and it should work better.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Redirection back to a page from form submit DAL Perl 11 03-21-05 02:45 PM
Getting the created file (fopen/fwrite) Programme PHP 5 02-14-04 03:09 PM
Please I Need help before all my hair is gone! LisatheNovice Perl 6 11-22-03 03:05 PM
New Web Host, New Problem! justchat PHP 2 09-29-03 02:39 PM
Upload file type and size limiter! Arctic ASP 1 08-02-03 07:06 PM


All times are GMT -5. The time now is 02:16 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.