Embeding Google Drive Folder | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Embeding Google Drive Folder

I am trying to embed Google Drive folder in webpage. I am using iframe for it. The folder is displays in the webpage. But, when I click on the file, it opens in new tab. I want to open the files in the webpage itself. How to do?

29th Jul 2023, 11:56 AM
Mustu
5 Answers
0
Mustu To open the files from the Google Drive folder directly within your webpage, you can modify the iframe URL. Add &amp;usp=sharing at the end of the URL within the src attribute of the iframe tag. This should prevent the files from opening in a new tab and instead open them within the embedded iframe on your webpage. Here's an example: <iframe src="https://drive.google.com/embeddedfolderview?id=YOUR_FOLDER_ID&amp;usp=sharing" width="640" height="450"></iframe>
31st Jul 2023, 2:20 PM
EAJUDDIN
EAJUDDIN - avatar
0
Thanks a lot. I will check it and give you update
31st Jul 2023, 2:42 PM
Mustu
0
Mustu Ok you check and update me.
31st Jul 2023, 4:34 PM
EAJUDDIN
EAJUDDIN - avatar
0
No. Still it is open in new tab. Attribute target=self will work? I don't know much about it. Please check on behalf of me.
1st Aug 2023, 11:29 AM
Mustu
0
Mustu You can try
1st Aug 2023, 2:04 PM
EAJUDDIN
EAJUDDIN - avatar