About This Product
FontsMadeEasy.com
 
Search This Database:
| Over 5000 Free Fonts | Tutorials | Javascript Forum | Other Javascript Resources | Cheat Sheet
Tutorial archive
General Questions
Javascript 1.2
Navigation
Numbers
Strings
Object Model
Reference Manual
Dialog
Windows
Frames
Forms
Images
Mouse Events
Colors
File Access
Control Status Bar
Dates and Time
Cookies
Client Information
Bookmarklets



JavaScript Limitations

Question: What can't JavaScript programs do?

Answer: JavaScript code cannot do any of the following:

  • use printers or other devices on the user's system or the client-side LAN
    (For a workaround, see Printing JavaScript output.)
  • directly access files on the user's system or the client-side LAN ; the only exception is the access to the browser's cookie files.
    (For a workaround, see the File Access section.)
  • directly access files on the Web server.
    (For a workaround, see the File Access section.)
  • implement multiprocessing or multithreading.
If you do need to access files or perform other "privileged" operations, you can use JavaScript in combination with a Java applet. Signed Java applets are allowed to do "privileged" things, and your JavaScript programs can exchange information with applets. However, you have to bear in mind the biggest JavaScript/Java limitation: the user can always disable Java or JavaScript or both!

BackBack