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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Email right frame by clicking a button on the left frame

Status
Not open for further replies.

pinto19

Vendor
May 22, 2005
29
US
Hello all,
I would like to pick your brain for a sec if I could please.
I have a javascript that by clicking on a button on the left frame, it will print the right frame. Now my question is, could there be a script that would do something similar to email a particular frame.

Here is the print script I am using...

<a href="javascript:framePrint('FRAMENAME');">
CLICK TO PRINT
</a>

I am very new to scripting. I just want the frame to be inserted in the email body( I am using MS outlook) and I will be choosing the email addresses and sending the email manually.

Thanks for any assistance.
 
Sorry for this part..
I have used the below in the <head> section of the page..

<script>
function framePrint(whichFrame){
parent[whichFrame].focus();
parent[whichFrame].print();
}
</script>

and the rest in the <body> section.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top