I have a div
that has background:transparent
, along with border
. Underneath this div
, I have more elements.
Curre
$('#elementontop').click(e => {
$('#elementontop').hide();
$(document.elementFromPoint(e.clientX, e.clientY)).trigger("click");
$('#elementontop').show();
});