read TJSHTMLElementRecord in ClickEvent

Is there a way to read the coordinates of a TwebDBGrid cell in the OnClickCell event?

Like in the ongetcellChildren event
..PosGetCellChildren(Sender: TObject; ACol,ARow: Integer; AField: TField; AValue: string;
AElement: TJSHTMLElementRecord);

t := AElement.element.offsetTop;
l := AElement.element.offsetLeft;
w := AElement.element.offsetWidth;
h := AElement.element.offsetHeight;

You can use:

procedure TForm1.WebDBGrid1ClickCell(Sender: TObject; ACol, ARow: Integer);
var
  el: TJSHTMLElement;
  dr: TJSDOMRect;
begin
  el := WebStringGrid1.CellElements[ACol,ARow];
  dr := el.getBoundingClientRect;
  console.log(dr);
end;

Via TJSDOMRect, you can read the coordinates of the cell.