Reputation: 53
i would like to embed the public view of my Google Scholar page into my personal webpage. I used the iframe tags, however the resulting box is just empty. What are the general rule where iframe tag applies?
Upvotes: 2
Views: 3845
Reputation: 335
The way I solved this is by exporting all my publications from Google Scholar to a bib file then use bibbase.org to create a publications page using the generated bib file. You can embed the generated page into your website. Works fine and looks good.
Upvotes: 0
Reputation: 685
Short answer: you cannot, because google refuses to allow other sites to embed its pages. Actually, if you are using a debugger, it should warn you that Google is using the same origin policy on its response: Refused to display 'http://scholar.google.fr/...' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
Upvotes: 3
Reputation: 15
Want to know all about ? Follow the link below. http://www.w3schools.com/tags/tag_iframe.asp
My opinion is to avoid iframes because of bookmarking and navigation. Here are some alternatives Alternatives to Iframe http://icant.co.uk/articles/crossdomain-ajax-with-jquery/index.html
Upvotes: 0