Hi @stefano1975
currently jQuery onHandler extensions don't have the functionality to specify conditions through the interface, so you won't be able to add the URL.
However, a solution is to be more specific in your jQuery selector. This following link has examples of other selectors you can use besides id/class.
https://api.jquery.com/category/selectors/
For instance, if your element has a unique attribute, you can use the Attribute Word Selector [name=”value”] selector.
Just as an example, let's say you have this element:
<a href="//api.jquery.com/category/selectors/">Selectors</a>
You can use this following attribute selector:
a[href='//api.jquery.com/category/selectors/']
If another selector does not solve your problem, you can contact your account management and open a ticket in the following link. Once the ticket is opened an engineer will be assigned to help you with a more specific implementation.
https://community.tealiumiq.com/t5/custom/page/page-id/support-contact-form
Hope it helps!
... View more