Advertisement
Guest User

Untitled

a guest
May 16th, 2017
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.50 KB | None | 0 0
  1. $("#inter").on('click', function() {
  2.   var value1 = $("#fto").val();
  3.   var value2 = $("#fdate").val();
  4.       var urlAPI = 'https://apifootball.com/api/?action=get_events&from='+value2+'&to='+value2+'&league_id='+value1+"&APIkey=fe753bc888bb6a75490621597fc3f4f93184ef9a2ffb5cffab3be87813b7023f";
  5.   $.ajax({
  6.     url: urlAPI,
  7.     dataType: 'JSON',
  8.     type: 'GET',            
  9.  
  10.  
  11.     success: function(result){
  12.         $("#result").html("mecz: " + result.match_id + " liga: " + result.league_id);
  13.     }});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement