Run through function one time

Run through function one time

 function jpPlayClick(){  //Code stuff };
Code I have tried so far:
$(document).one("click", '.jp-play', function () { jpPlayClick(); });
I want to run through jpPlayClick() once if the user clicks on it for first time, the current code I have disables all my other clicks on class .jp-play obviously. Best way to do this?