Refresh tab content on click in JQuery tabs

Solution:

I’ll suggest load jquery and assign the id to that tab and on click function reload the page.

jQuery("#team").click(function() {  location.reload(true); });

Or Using Javascript with the help of onclick function

<a href="#tab-1403849707999-3-7" id="team" onClick="window.location.reload()">TEAM MEMBERS</a>