[quote="ajb":syyiekfa]Hi,
in PHP code use load_js to load file, or eval_js_once to eval js directly in the EPESI web app. once means that this code will be executed only once per web app lifecycle. If you'd like to invoke your method every page load/refresh, then use eval_js
load_js('modules/CRM/Contacts/test.js');
eval_js_once('function my_js_func() { }');
Regards,
Adam[/quote:syyiekfa]
I will give this a try thanks adam! 😉