I have multiple add-remove input field rows in my form. This is nothing but a report. There is a print button and I want to print only data entered in form in structured manner. Similar like table,column,rows and text but not buttons or input box borders. I tried this for print button
javascript:window.print()
And created classes using
{
display: none;
border: none;
}
Wanted to know how to write function where i can collect data and get print view in structured manner on-click Print button.
This is code i am working on