In my page i had a button,when clicks on that button it has an ajax call.The code follows
   $(document).ready(function() {
     $('#one').click(function() {
    $("#one").load(
    "http://www.ggookkll.com/pinIt/?frm_firstName=" +encodeURIComponent('frm_firstName'));
 }); });
But my request is recieved successfully, but iam not getting any response.
The error is
 Origin http://127.0.0.1 is not allowed by Access-Control-Allow-Origin. 
Can anyone help me in solving this.
 
     
    