Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
$(".tab").on("click", function() { const type = $(this).data("type"); const cached = $(this).data("response"); if (cached) { render(cached); return; } $.getJSON("/api/items/" + type, function(data) { $(this).data("response", data); // cache it render(data); }.bind(this)); });
Result
Open