var url='http://localhost/Kohana_CORE/';

$(document).ready(function() {

      function get_live_for_match(match_id) {
           $.ajax({
                   url: url+"livescore/get_live_for_match/",
                  type: "GET",
                  data: "match_id="+match_id,
                    success: function(data) {
                        $("#actual_status").html(data);
                    }
                });
              setTimeout(function () {
              getlive();
              }, 30000);
     }


});






