Have table and if I mousemove on columns need to get column data as tooltip, tried below code and getting tooltips. But if we hover on dropdown all options are coming in tooltip. Could you please help me how to get only selected option in tooltip.
ngOnInit(): void {
$(document).on("mousemove", "tr td", function () {
var colVal = $(this).text();
$(this).prop("title", colVal);
});
}