Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.aimtell.com/llms.txt

Use this file to discover all available pages before exploring further.

Aimtell Ready

_aimtellReady()
Description: Called when aimtell script has finished loading.

Example

function _aimtellReady(){
  alert("Everything is loaded!");
}

Permission Granted

_aimtellPermissionGranted()
Description: Called after website visitor has granted push notification permissions.

Example

function _aimtellPermissionGranted(){
 alert("Thanks, you're now subscribed!");
}

Permission Ignored

_aimtellPermissionIgnored()
Description: Called after website visitor has ignored push notification permissions. (clicking “x” on the request dialog)

Example

function _aimtellPermissionIgnored(){
 alert("Oh no, you ignored me!");
}

Permission Denied

_aimtellPermissionDenied()
Description: Called after website visitor has denied push notification permissions.

Example

function _aimtellPermissionDenied(){
 alert("Oh no, you denied me!");
}