Embedded Google Map - Chrome works but IE doesn't - html

I have embedded a google map into my website following link
http://index.wikidot.com/how-to-embed-a-google-map
It works well with chrome.
However, with IE when I press the zoom button, it redirects me to google maps website from my website.
I have even tried without [[embed]] in the above link.
Do I need to insert any extra index in src="" or something in order make it working?

Related

target="_blank" not working in Google Chrome on mobile devices (Android)

I used the tag to link a pdf (which is stored in a folder in my website) with the attribute target="_blank", but it doesn't work on mobile devices (android)
My code:
Catalogue
This works just fine on desktop, it opens the pdf in a new tab of the browser, as it should with the attribute target="_blank".
HOWEVER, I tested this on mobile and the result was:
It works on iPhone using safari, BUT it doesn't work on Android using Google Chrome. Instead of opening the pdf in a new tab it automatically downloads the file.
Is there any way to change this behaviour?
I've also tried using target="about:blank" instead, but it didn't work
Try using the rel=”noopener” or rel=”noreferrer” link attributes for every link.
The rel=”noopener” link attribute prevents the linked site from receiving access to the original web page that is linking out. This prevents the linked site from taking control or otherwise influencing the linking site.
The rel=”noreferrer” link attribute hides the referrer information from the site that is being linked to. When a site visitor clicks a rel=”noreferrer” link, the site being linked to won’t know what site referred the visitor.
For example, if you code a link like this:
<a href="https://www.example.com/" target="_SEJ" rel="noreferrer">
The above link will open in a brand new browser tab.
For further guidance do visit this site:
https://www.searchenginejournal.com/blank-link-attribute/435883/#close

How do I embed a google form into a webpage compatible with IE, Chrome, and Firefox?

How do I embed a google form into a webpage? I've tried iframe but it doesn't seem to work in IE or Chrome. I don't have access to using a database so that method wont work. I have created a form via the web and one via google forms but can't seem to figure out how to extract the data entered into a spreadsheet. I've tried searching for an answer but can't find one.
How do I embed a google form into a webpage? I've tried iframe but it doesn't seem to work in IE or Chrome. I
You can't. Google forbid it with the X-Frame-Options response header.
Just link to it instead.
can't seem to figure out how to extract the data entered into a spreadsheet
Click the sheets icon on the form page.

Linking to another html page in Google Apps Script Not working in sandbox 'IFRAME'

In Google Apps Script: Using NATIVE sandbox mode:
Linking to another HTML page in Google Apps Script is working fine.
But when using IFRAME sandbox mode:
Unable to get links working in Google Apps Script when using sandbox mode of "IFRAME"
As per the above SO post I tried using target="_blank". As expected, when the link is clicked the page opens in a new window.
However -
Using target="_parent" in Chrome opens a new window each time, but Firefox is not working. According to https://developers.google.com/apps-script/guides/html/restrictions target="_parent" is not supported by HTML Service — this is probably why it behaves like target="_blank".
Using target="_self" in both Chrome and Firefox results in the first click opening in the same window but subsequent clicks bring up a blank page.
I want the page to load in the same window as my Apps script, as would occur when using target="_self" in an anchor on an unrestricted web page.
plz help me.
When using IFRAME sandbox mode, for <a>nchors to open in the same tab or window, target="_top" must be specified. Support for this was added to Google Apps Script in the latter half of 2015. Before this time unexpected behaviour resulted. From a Google Apps Script developer blog:
We have been working hard to improve IFRAME sandbox mode and have
added many features since then, including: Firefox support, file
uploads, top navigation support, and improved Google Picker API
support.
It's a doc error needs to fix with Google when using "SandBoxMode=IFRAME" currently. See Can't call a server function with a form with input type="file" when using SandBoxMode=IFRAME.
I've tested it works now by setting the HtmlService.SandboxMode.NATIVE
instead of working when HtmlService.SandboxMode is set to Iframe. Also reference to this related issue here.

Google Maps controls not showing in Wordpress plugin

We are developing a Wordpress plugin, that shows a Google Map with placemarks, that you define on Friendsofplaces.com. Here is an example: http://agalod.com/wordpress/?page_id=23
Only, the Google Maps controls are messed up, respectively not showing at all. The first thing to presume is CSS-conflict. In Chrome and Firefox, I disabled all styles not coming from Google, for the controls, but no difference.

Getting chrome to go full screen, programmatically

When I view the impress.js website in chrome on iOS, the tab bar slides up and disappears. How do I do that?
Note: doesn't happen in safari on iOS.
A simple Google search would suffice for this question.
http://updates.html5rocks.com/2011/10/Let-Your-Content-Do-the-Talking-Fullscreen-API
https://developer.mozilla.org/en-US/docs/Web/Guide/DOM/Using_full_screen_mode
http://davidwalsh.name/fullscreen
All are excellent resources (and the top three Google links!).
Essentially, there's a new API which allows JS to request fullscreen access. That's about it.