- Using tabs users can click around a tabbed interface
- On each tab
results are called and display within a visibledivthe rest are
hidden When a user clicks a tab, it call results for that tab - I have multiple sets of results per tab each calling functions that would be required if only one set was used (This is a possibility)
- When multiple sets are called my script calls the same functions over and over – for each set
How do I stop subsequent functions from
reloading once they have already run for the first time on that tab?
It’s quite common to use a boolean data attribute to indicate whether or not something has already been “filled” by a request. For example:
If you want a more specific answer, I would suggest that you provide more detail in your question.