Last active
February 12, 2018 18:54
-
-
Save zdenekdrahos/3bfa18ffdb26d5f8d02c to your computer and use it in GitHub Desktop.
Scortes - jQuery, AJAX integration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang=cs><head><meta charset=utf-8 /></head><body> | |
<ul class="teams"> | |
<li><a href='https://scortes.rozpisyzapasu.cz/api/533A1A/2015/Morašice/status.html'>Muži</a></li> | |
<li><a href='https://scortes.rozpisyzapasu.cz/api/530C2B/2015/H. Újezd/Morašice/status.html'>Dorost</a></li> | |
<li><a href='https://scortes.rozpisyzapasu.cz/api/533E2A/2015/Morašice/status.html'>Žáci</a></li> | |
</ul> | |
<div id="scortes"></div> | |
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script> | |
<script> | |
(function() { | |
preloadFirstTeam(); | |
loadResultsOnClick(); | |
function preloadFirstTeam() { | |
loadResults($('.teams li:first-child a')); | |
} | |
function loadResultsOnClick() { | |
$('.teams a').click(function(e) { | |
e.preventDefault(); | |
loadResults($(this)); | |
}); | |
} | |
function loadResults(link) { | |
var url = link.attr('href'); | |
$.get(url).then(function (data) { | |
$('#scortes').html(data); | |
}).fail(function () { | |
alert('Výsledky se nepodařilo načíst'); | |
}); | |
} | |
}()); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment