•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 391,809 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,509 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 1132 | Replies: 5
•
•
Join Date: Oct 2006
Posts: 7
Reputation:
Rep Power: 0
Solved Threads: 0
Hello All,
I have a javascript image preloading script I'm writing, and it basically creates an array called "array_name" which contains the image filenames, and then uses a for loop to assign "array_name"'s elements to another array called "preload". I know my syntax is good, but the firefox javascript inspector is complaining each time I attempt to run this. Can anyone take a look at the code, and tell me what I'm doing wrong?
Thank You
I have a javascript image preloading script I'm writing, and it basically creates an array called "array_name" which contains the image filenames, and then uses a for loop to assign "array_name"'s elements to another array called "preload". I know my syntax is good, but the firefox javascript inspector is complaining each time I attempt to run this. Can anyone take a look at the code, and tell me what I'm doing wrong?
Thank You
javascript Syntax (Toggle Plain Text)
function imgLoad() { array_name=[]; preload=[]; array_name[0]='images/bgcolor.gif'; array_name[1]='images/blackdot.gif'; array_name[2]='images/bold.gif'; array_name[3]='images/centre.gif'; array_name[4]='images/copy.gif'; array_name[5]='images/cut.gif'; array_name[6]='images/email.gif'; array_name[7]='images/hr.gif'; array_name[8]='images/hyperlink.gif'; array_name[9]='images/image.gif'; array_name[10]='images/indent.gif'; array_name[11]='images/insert_table.gif'; array_name[12]='images/italic.gif'; array_name[13]='images/justifyfull.gif'; array_name[14]='images/left_just.gif'; array_name[15]='images/list.gif'; array_name[16]='images/numbered_list.gif'; array_name[17]='images/outdent.gif'; array_name[18]='images/paste.gif'; array_name[19]='images/redo.gif'; array_name[20]='images/right_just.gif'; array_name[21]='images/smiley.gif'; array_name[22]='images/spellcheck.gif'; array_name[23]='images/textcolor.gif'; array_name[24]='images/underline.gif'; array_name[25]='images/undo.gif'; for (var i = 0; i < array_name.length; i++) { var preload[i] = new Image(); preload[i].src = array_name[i]; } }
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
- nested for loop problem (Java)
- Simple script loop question (Shell Scripting)
- Calculus chat? (Computer Science and Software Design)
- Winsock Multi-Client Servers (C++)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: null is null or not an object error. No menus work
- Next Thread: Javascript syntax '' within '' (simple question)



Threaded Mode