Click to See Complete Forum and Search --> : Move #'s from a table
kdoubles
07-29-2003, 09:40 AM
Is there a way to move numbers from one table to another. I have two asp pages. I need to take certain numbers from one and insert them into a table because some of the columns contain info not needed. It would be great if I could bypass the formatting tags and just pull the numbers out.
Thanks in advance!
kdoubles
07-29-2003, 09:56 AM
To be more in depth... my code is something like
<td><font="whatever>186</td>
I want to use some javascript to take the 186 and put in the the first cell of another page, and then repeat the process....
SlankenOgen
07-29-2003, 10:09 AM
<td id = "xxx">123</td>
function A(){
var str = 0;
str = document.getElementById("xxx").innerHTML;
str = Number(str);
alert(str);
}