PDA

View Full Version : IE's functions


trungluu
07-31-2003, 11:45 AM
Hi,

Can I use Javascript or VBscript to call the functions on the menu bar of the Internet Explorer browser? (ex: File - Print... or File - Send - Page by email...) How to do this by javascript?

Thanks in advance,

Trung Luu

glenngv
07-31-2003, 01:00 PM
window.print() for printing.
Send Page by email launches the default email client and the current whole page is automatically pasted as HTML to the email's message area. Javascript can launch the email client using mailto: but it can't paste the whole page as HTML. To send page automatically, you need a server-side language and SMTP server.