+ 2
Javascript problem, i can't solve it
how to insert a variable inside a table, is there any method to solve it?
2 Answers
+ 4
you could give the td or where you want to add the variable an id
and then you can access the element with
var element = document.getEementById("theID");
and put the variable in the output of the element
element.innerHTML = yourVariable;
something like that
+ 2
thanks, its work