$(document).ready(function()
{


   $.getJSON("https://graph.facebook.com", function(json)
   {

       alert("D");
   });

/*

$.ajax({
				type: "get",
				url: "https://graph.facebook.com/127460950652375",
				data: "",                               
				cache: false,
				beforeSend: function(){
				},
				success: function(html){

					alert(html);
					
				},
				error: function(html) {

				        alert(html);
				}
			}); 

  */
 });
