Run function on page load once only

$(document).ready(function(){
     functionName();
});

… is one way of doing it.

HTH,

:slight_smile: