i try using jquery ajax to get content from :
http://www.infovesta.com/isd/free/reksa2.jsp?tipe=pt&_=1332749661789
that url is contained data from h**p://www.infovesta.com/isd/index.jsp
after checking by firebug on my working page, i get http response 200 but data is not loaded,
but comparing to their site, they can get the data with that request url.
what's the step i missed?
my code :
<script> $(document).ready(function(){ $.ajax({ url: 'http://www.infovesta.com/isd/free/reksa2.jsp?tipe=pt&_=1332749661789', success: function(data) { $('.result').html(data); } }); }); </script>