Skip to main content
edited tags; edited title
Link

get Get data from above cell

Source Link

get data from above cell

I need to retrieve the bottom border width of the cell above the clicked cell.

var $this = $(this); var col = $this.parent().children().index($this); var row = $this.parent().parent().children().index($this.parent()); var bordWidth= ($this.parents('tr:eq('+(row-1)+')').find('td:eq('+col+')').css("border-bottom-width"));