質問

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