Here is my code:
1. Normally I can concatenate the given values in text-area
2. After adding the new row I am not able to do that
can any one please help me to fix this issue!!
Thanks
Code:
1. Normally I can concatenate the given values in text-area
2. After adding the new row I am not able to do that
can any one please help me to fix this issue!!
Thanks
Code:
Code:
<!DOCTYPE html> <html> <head> <style>
table, td {
border: 1px solid black;
}
</style> </head> <body> <p>Click the button to add a new row at the first position of the table and then add cells and content.</p> <table id="myTable"> <th> Owner </th> <th> Receiver</th> <th> agreement</th> <th> Access</th> <th> Permissions</th> <tr> <td><input type="text" id="Owner" onkeyup="generateEOS()"/></td> <td><input type="text" id="Receiver" onkeyup="generateEOS()" /></td> <td><input type="text" id="Options" onkeyup="generateEOS()" /></td> <td><select onchange="ChooseContact(this)"> <Option>Access</Option> <option>R</option> <option>W</option> <option>B</option> <option>N</option> </select></td> <td><input type="text" id="Access" onkeyup="generateEOS()" /></td> </tr> </table> <br> <div align="Center"> <button onclick="myFunction()">Add new row</button> <textarea id="preview" rows="20" cols="70">
Comment