jQuery(function($) { $("head").append(""); css = $("head").children(":last"); css.attr({ rel: "stylesheet", type: "text/css", href: "https://ects.upjp2.edu.pl/static/b91196e/iml.css" }); $('.ectsembedroot').each(function() { var root = $(this); root.addClass('iml'); var display = root.attr('display'); if (display == 'coursediagram') { var prg_kod = root.attr('prg_kod'); $.ajax({ url: 'https://ects.upjp2.edu.pl/services/getcoursediagram', data: {'format': 'jsonp', 'prg_kod': prg_kod}, dataType: 'jsonp', success: function(html) { if (html) root.html(html); } }); } }); });