Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can you make "Send Page by Email" to popup?

Status
Not open for further replies.

greggb

Programmer
Dec 6, 2003
30
US
Does anyone know of anything you can put in a web-page that will trigger that "Send Page by Email" box to come up and let the user simply fill in the email address then send it. This would be easier than trying to explain how to use the browser feature.
 
Not sure which box you mean, but you can try one of these:

Code:
<a href="mailto:youraddress@here.com">link</a>

or, using javascript:

Code:
document.location = 'mailto:youraddress@here.com';

Hope this helps,
Dan
 
Hmmm.... you may be on to something with the javascript idea, but I'm not sure. What I'm talking about is the box that comes up when, while in IE6, you go to File, Send, Page by Email. Not sure if this feature is in Netscape or not.

Thanks for your ideas....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top