Wiki

Clone wiki

elvira-api / pelda / javascript

JavaScript

(function(){
	$.ajax({
		type: "GET",
		url: "http://apiv2.oroszi.net/elvira",
		dataType: "jsonp",
		data: {
			from: "budapest",
			to: "győr",
			date: "2012.02.26"
		},
		success: function( data ){
			alert( data );
		}
	});
})();

Updated