Skip to content

Instantly share code, notes, and snippets.

@dvlden
Last active September 11, 2017 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvlden/e4d016f71dad36617e54b8ab900572af to your computer and use it in GitHub Desktop.
Save dvlden/e4d016f71dad36617e54b8ab900572af to your computer and use it in GitHub Desktop.
ITAcademy/LinkLearning - Skip time waiting on lessons
(function ($) {
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
$.ajax({
url: 'index.php?c=jedinice&f=korisnikPocitao&pk=' + getParameterByName('pk'),
type: 'post',
data: { 'IDIstorijaNastavnaJedinica': getParameterByName('IDJedinica') },
success: function (resp) { console.log(resp); }
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment