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.
_aimtellReady()
Description: Called when aimtell script has finished loading.
Example
function _aimtellReady(){
alert("Everything is loaded!");
}
_aimtellPermissionGranted()
Description: Called after website visitor has granted push notification permissions.
Example
function _aimtellPermissionGranted(){
alert("Thanks, you're now subscribed!");
}
_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!");
}
_aimtellPermissionDenied()
Description: Called after website visitor has denied push notification permissions.
Example
function _aimtellPermissionDenied(){
alert("Oh no, you denied me!");
}