Hey guys I want to load a external link inside an element but nothing happens here is the code I used...

$(window).ready(function() {
  $('#contador').load('http://counter2.freecounterstat.com/private/counter.js?c=36c0ded599f90fd9584581d3e2b02682'); 
});

and the html code ...

<div id='contador'></div>

Thanks!

有帮助吗?

解决方案

Its $(document).ready your looking for, the is also $(window).load
Also the resource you want to load is a js file, which utilizes document.write so have to load it inline. Put it as a script tag at the bottom of you page

  <script src='http://counter2.freecounterstat.com/private/counter.js?c=36c0ded599f90fd9584581d3e2b02682'></script>
</body>

其他提示

load doesn't load external server but it loads the url from own server.

If you want to load external server see this question

.load will open only the links within the site, for other links you have to use html Iframe.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top