I am currently utilizing the Jquery load function $('#result').load('test.php');
in order to dynamically load a page within another page when clicking on a tab. The page being loaded contains javascript, php, and a form. Upon inspecting the firebug console, I noticed that there is a GET
request for all script sources in the loaded page. I am uncertain if this poses a security concern.
Is it possible for data to be compromised through the use of jquery load? Are there any potential issues that should be taken into consideration?
Please note: I understand that older browsers may have limitations with javascript, but are there any other aspects to keep in mind?