﻿/// <reference path="jquery-1.2.3.min.js" />
$(document).ready(function() {
  $.ajax({
    type: "POST",
    url: "/pldtsite/pages/stockservice.asmx/GetNYSEQuote",
    data: "{}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function(msg) {
      $('#nyse').removeClass('loading');
      $('#nyse').html(msg.d);
    }
  });
});