hi,
i am trying to get current price of google stocks by using javascript, but not able to do this .i would really appreciate if you could help me out in this… the JS code is given below -
var currentPrice;
$(document).ready(function()
{
$.getJSON("http://finance.google.com/finance/info?client=ig&q=NASDAQ%3AGOOG",function(data)
{
currentPrice= "Current Price for Google Stock is" + data.l ;
$("#test").html(currentPrice);
});
});