If I have a template index.html and use jquery.load to include a file with html e.g $('#targetDiv').load( 'includes/inc1.html' );
into it. How do I target the content in inc1.html with both javascript and jQuery from within index.html
let's say inc1.html contains <div id="content">10</div>
and I want to change the value from 10 to 20 using document.getElementById("content").innerHTML = "20";
within the script tags in index.html?
Thanks