// JavaScript Document
$(function() {
        $.ajax({
               type: 'GET',
               url: 'news.html',
               dataType: 'html',
               success: function(data) {
                   $('#getNews').append(data);
               },
               error:function() {
                   alert('問題がありました。');
               }
        });
});

