(function($) {

  $(function() {

    $.ajax({url: "https://konto.blauworld.de/app?service=UserInfo", dataType: 'script'});

  });

})(jQuery);

function displayUserInfo(data) {
  if (data != null) {
    var dom = $(data).map(function() {
      if (this.tagName == 'DIV') {
        return this;
      }
    });
    $('#accountLogin').addClass('account-user-info');
    var headline = dom.find('a#accountStartLink');
    var siblings = headline.siblings();
    headline.text(headline.find('h3').text());
    $('#accountLogin h2').html(headline);
    $('#accountLogin .box-content').html(siblings);
  }
}


