15 lines
308 B
Plaintext
15 lines
308 B
Plaintext
|
|
<form method="POST" form="form1">
|
|
<input type="hidden" name="htmlText" id="htmlText">
|
|
|
|
</form >
|
|
|
|
|
|
var htmlContent="";
|
|
htmlContent=$('#table').html();
|
|
|
|
$("#htmlText").val(htmlContent);
|
|
document.getElementById("form1").action="localhost/railtech/dynamic_pdf.php";
|
|
document.getElementById("form1").submit();
|
|
|