How to add click event to table cell in this code?

srikanth_k

In this code, I want to make the table cell clickable with javascript.

Please also tell me how to use i,j values with the click event.

<!DOCTYPE html>
<html>
<head>
<style>
 td 
 {
   height : 30px;
   width : 30px;
   cursor: pointer;
 }
</style>

<script>
function clickHere(){
var table = document.getElementById("myTable");
var row ;
var cell;
for(var i=0;i<2;i++){
  row = table.insertRow(i);
  for(var j=0;j<2;j++){
    cell = row.insertCell(j);
  }
 }
}
</script>
</head>

<body onload="clickHere()">
 <table id = "myTable" border="1"></table>
</body>
</html>
Danny Ogen

Add this code:

cell.addEventListener("click",function(){
    alert("cell clicked");
});

After this code:

cell = row.insertCell(j);

It will add event listener to each cell. when clicked it will show an alert.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to add click event to table cell in this code?

From Dev

How to add a click event to a tableview cell in javafx

From Dev

Add click event in code

From Dev

How to set click event for a cell of a table column in a Tableview?

From Dev

Add cell click event handler to datagridview?

From Dev

iOS: How to add constraints for textfield in a table cell in code

From Dev

Table cell on click add row just under

From Dev

how to get cell click event in kendo grid

From Dev

Jqgrid how to write cell click event

From Dev

JQuery click event to add or remove table rows

From Dev

How to add a click effect to a button on click event?

From Dev

How do I add buttons to an MS Access form at run time with VBA and add code to the _Click() event

From Dev

How to call a Gridview cell click Event from button Click

From Dev

How to get table cell value on button click

From Dev

How to Change an UIImageView Image in a Table cell, on a button click from the cell?

From Dev

Add onclick event on a php-generated table cell

From Dev

How to add value to an array on click event

From Java

How can I add click event to kendoGridCellTemplate

From Dev

How to add series after click event in HighCharts

From Dev

how to add button click event in android studio

From Dev

How to add a row into datatable on button click event?

From Dev

How to Add Click event in Stack Layout or Frame

From Dev

How to add a click event to the header of the GXT FramedPanel

From Dev

How to add a button with click event on UITableViewCell in Swift?

From Dev

How to add a click event to a button in a chrome extension?

From Dev

How to add the image before the on click event ends?

From Dev

How to add series after click event in HighCharts

From Dev

How to add circle on click event in JavaScript?

From Dev

How to add an event on SVG click with Meteor?

Related Related

  1. 1

    How to add click event to table cell in this code?

  2. 2

    How to add a click event to a tableview cell in javafx

  3. 3

    Add click event in code

  4. 4

    How to set click event for a cell of a table column in a Tableview?

  5. 5

    Add cell click event handler to datagridview?

  6. 6

    iOS: How to add constraints for textfield in a table cell in code

  7. 7

    Table cell on click add row just under

  8. 8

    how to get cell click event in kendo grid

  9. 9

    Jqgrid how to write cell click event

  10. 10

    JQuery click event to add or remove table rows

  11. 11

    How to add a click effect to a button on click event?

  12. 12

    How do I add buttons to an MS Access form at run time with VBA and add code to the _Click() event

  13. 13

    How to call a Gridview cell click Event from button Click

  14. 14

    How to get table cell value on button click

  15. 15

    How to Change an UIImageView Image in a Table cell, on a button click from the cell?

  16. 16

    Add onclick event on a php-generated table cell

  17. 17

    How to add value to an array on click event

  18. 18

    How can I add click event to kendoGridCellTemplate

  19. 19

    How to add series after click event in HighCharts

  20. 20

    how to add button click event in android studio

  21. 21

    How to add a row into datatable on button click event?

  22. 22

    How to Add Click event in Stack Layout or Frame

  23. 23

    How to add a click event to the header of the GXT FramedPanel

  24. 24

    How to add a button with click event on UITableViewCell in Swift?

  25. 25

    How to add a click event to a button in a chrome extension?

  26. 26

    How to add the image before the on click event ends?

  27. 27

    How to add series after click event in HighCharts

  28. 28

    How to add circle on click event in JavaScript?

  29. 29

    How to add an event on SVG click with Meteor?

HotTag

Archive