HTLM Javascript blocked?

Dear all,

I have an issue with HTML block containing Javascript. The script is functioning on CMS site (e.g. Joomla), but seems to be blocked in being blocked in Bubble. Purpose of code is:

  1. to call external JS
  2. to create attributes out of Bubble data, and
  3. to send attibutes to external server

Can it be I am making some errors? Or does Bubble really blocking JS and does not allow to use ssDeepLink function from external

Here is the code:

<script src="https://customer.smartsender.eu/js/client/dl.min.js"></script>
<a href="https://t.me/freud_online_bot?start=ZGw6NjIzNg" target="_blank" class="deep-link">
  <div style="background-color: red;">
    <img src="https://s3.amazonaws.com/appforest_uf/f1661186536189x327739825590793540/telegram.svg" width="40" height="40">
  </div>
</a>
<script> 
	let url_source = (Math.random() + 1).toString(36).substring(7);
	let vars = {
		variables: {
			url_source: url_source
		}
	};
    ssDeepLink('deep-link', 'freudo', false, vars);
</script>

Here is the Bubble page: https://datico.club/version-test/freudonline_contact?debug_mode=true

This topic was automatically closed after 70 days. New replies are no longer allowed.