Webix popup via a pure HTML anchor

Hi team,

Is it possible to link a HTML anchor to a webix popup to it appear beside the anchor like a webix button please ?

https://snippet.webix.com/by6gaog7

I tried

<a href="javascript:$$('thePopup').show(this)">Open the popup</a>

with “this”

@XavierDP
instead of href try to use onclick

<a href="#" onclick="javascript:$$('thePopup').show(this);return false;">Open the popup</a>

Thank you very much @intregal

https://snippet.webix.com/xk1qiyfr