Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
1,366
Widok
0
13/12/2019 5:02 pm
Topic starter
example
1 Answer
0
13/12/2019 5:04 pm
Topic starter
1. go to events
2. right click
3. select add other -> javascript
4. create similar script
var my_function = async function (func) { setTimeout(function () { var req = new XMLHttpRequest(); req.open('GET', 'https://my.address.com/something/data/1', false,true); req.send(null); }, 0); }; my_function ();