Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
May 31, 2023
<!DOCTYPE html> <html> <body> <h2>Adding Column To A Row</h2> <table border="1" id="tbl"> <tr id="1"> <th>Email_id</th> <th>User_data</th> </tr> <tr id="2"> <td>[email protected]</td> <td>Software Developer</td> </tr> <tr id="3"> <td>[email protected]</td> <td>Intern</td> </tr> </table> <button onclick="add()">Add</button> <script> function add(){ var row = document.getElementById("1"); var col = document.createElement("td"); col.innerText="New_title"; row.appendChild(col); } </script> </body> </html>