javascript - Load local files using iframe -
i tried load files using iframe
, didn't work.
i want load file from: c:/users/tom/desktop/courses/c2.pdf , tried:
<iframe src="file:///c:/users/tom/desktop/courses/c2.pdf"></iframe>
but nothing appears.
how can load local files using iframe
or else? thanks.
this because of same origin policy: in case iframe not allowed load resource if not served localhost. see https://developer.mozilla.org/en-us/docs/web/security/same-origin_policy more info
Comments
Post a Comment