Is there an event that I can register for that fires each time the user clicks on a tab, meaning that they were on my page's tab, clicked on another tab, then came back to my tab.
EDIT: By tabs, I mean browser tabs, not jQueryUI tabs.
Matijis provided this answer in a comment, but I wanted to accept it so here it is as an answer.
$(window).on('focus', function() { // your code });