copying a sum of figures from one frame to another frame.

  • Thread starter thanks for the help mate
  • Start date
T

thanks for the help mate

I have page of figures that are selected in one frame and wish to have them
added up and the total shown in another frame.

I have the total in a variable called 'total' how do I get this figure in
the other frame

thank you.
 
J

Jon Spivey

Hi,
Put an empty div where you want the total to be displayed, eg
<div id="theTotal"></div>

Then you can put the total in the div
parent.NameOfFrame.document.getElementById('theTotal').innerHTML = yourTotal
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top