print individual tables ??
- by LiveEn
I am getting values from a database and displaying in a table. Im trying to print the results as individual .
Im using the below javascript
<script type="text/javascript">
function print_parent(element)
{
element.parentNode.className = 'print';
window.print();
element.parentNode.className = '';
return false;
}
</script>
The…