check output of calc in css code example
Example 1: how to get text which is in input td using jquery
$(function(){
$("#onpressofabutton").click(function(){
var data1 = $(this).find("td:eq(0) input[type='text']").val();
var data2 = $(this).find("td:eq(1) input[type='text']").val();
});
});
Example 2: how to code print in javascript
console.log("print")
//or
alert("Print")