Ubuntu
jQuery(document).ready(function() {
jQuery("#authorplugins-start").click(function() {
jQuery("#authorplugins-wrap").hide();
jQuery.ajax({
dataType: 'jsonp',
jsonp: 'jsonp_callback',
url: window.location.protocol + '//www.schloebe.de/api_portfolio.php?cat=wordpress',
success: function (j) {
jQuery.each(j.plugins, function(i,plugin) {
jQuery('#authorpluginsul').append( '' + plugin.os_script_title + ' - version ' + plugin.os_script_version + '' ).css("display", "none").fadeIn("slow");
});
}
});
});
});