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

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -