﻿
$(document).ready(function () {

    $.ajaxSetup({
        // Disable caching of AJAX responses */ 
        cache: false
    });

    //alert('here');
    $.getJSON('/Home/GetNews/', function (response) {
        //alert(data['0'].toString());

        $.each(response, function (i, item) {
            //alert(item.ItemContent);
            $("#ulNews").append(item.ItemContent);

        });

    });

    $.getJSON('/Home/GetBlog/', function (response) {
        //alert(data['0'].toString());

        $.each(response, function (i, item) {
            //alert(item.ItemContent);
            $("#ulBlog").append(item.ItemContent);

        });

    });

});

