I am trying to use .load , so I can load the external page into a div on the current user page. When I call .load , does the content load and then style it with the current stylesheet defined on this page? If not, how would I do it? Example
<head> <link ref="stylesheet" href="main.css"/> </head> <body> <div class="section"> <h2>Say this div was loaded with .load after page loaded</h2> </div> </body>
If .section was loaded via .load , will the style load the current page and modify this div after loading it or is it just html that loaded without styling. If this is the last, how would I style it without using the <style> tags?
source share