I created this little code using jquery to load an external HTML file into my div, but it doesnโt work, I am running out of ideas. Any other jquery code works well. Any help appreciated:
<div id="zaladuj"> load external html file </div> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $('#zaladuj').click(function () { $(this).load('s1.htm'); }); </script>
jquery html external load
user2660811
source share