Quantcast
Channel: Mailto links do nothing in Chrome but work in Firefox? - Stack Overflow
Browsing all 20 articles
Browse latest View live

Answer by Chris for Mailto links do nothing in Chrome but work in Firefox?

I had trouble with all of the listed solutions. I ended up heading to Gmail and running:navigator.registerProtocolHandler("mailto", "https://mail.google.com/mail/?extsrc=mailto&url=%s", "Gmail");

View Article



Answer by MrPatel2021 for Mailto links do nothing in Chrome but work in Firefox?

I face same issue. because I am working in google chrome and my default app is also google chrome. So, google chrome is not able to open another chrome. So, we need to just change our default app. You...

View Article

Answer by Sambarilove for Mailto links do nothing in Chrome but work in Firefox?

I just had the same issue. Creating a function solved the problem:<script> function sendEmail(){ window.location = "mailto:test@test.com"; }</script><a onclick="sendEmail();">hi this...

View Article

Answer by Dr. Waleed Aldhahi for Mailto links do nothing in Chrome but work...

I solved the problem using this code:<button onclick="email()">Contact me !</button><script>function email() { var str = window.open('mailto:aaaaaa@aaaaaa.net',...

View Article

Answer by user11768920 for Mailto links do nothing in Chrome but work in...

'Use Chrome, invite troubles' - Anonymous. (Just a symbolic reference)Well, Chrome is notoriously famous for a lot of default security-enabled utilities, and that's where your problem originates from....

View Article


Image may be NSFW.
Clik here to view.

Answer by CodeBrauer for Mailto links do nothing in Chrome but work in Firefox?

On macOS check also the Mail.app settings, which App is selected as default email App / associated with mailto: links:If you ever clicked that notification on Gmail, which allows to open links in Gmail...

View Article

Answer by math4999 for Mailto links do nothing in Chrome but work in Firefox?

The usual <a href="mailto:hi@hi.com"></a> should work, but remember you must have a default email program set on your computer. For ex, I'm using Ubuntu 14.04 and the default email is...

View Article

Image may be NSFW.
Clik here to view.

Answer by red-o-alf for Mailto links do nothing in Chrome but work in Firefox?

You need to allow gmail to install the service handler for mailto protocol:1) go to gmail2) click the small rhombus icon at the end of address bar (screenshot)3) enjoy

View Article


Answer by Benn for Mailto links do nothing in Chrome but work in Firefox?

Fix that worked for me since my Protocol handlers was empty https://productforums.google.com/forum/#!topic/gmail/CQMCGRvyhCMSee redfish43 reply , to sum upFor mailto:- Make sure you are logged in to...

View Article


Image may be NSFW.
Clik here to view.

Answer by SamJackSon for Mailto links do nothing in Chrome but work in Firefox?

In my case, chrome was associated as MAILTO protocol in Windows 10. I changed the association to Outlook using "Default Programs" ->"Associate a file type or protocol with a program". MAILTO is way...

View Article

Answer by Jes for Mailto links do nothing in Chrome but work in Firefox?

I had the same problem. The problem, by some strange reason Chrome turned himself as the default tool to open a mailto: link. The solution, put your mail client as the default app to open it. How to :...

View Article

Answer by Mach1 for Mailto links do nothing in Chrome but work in Firefox?

I found this answer on a Google forum that has worked me. In the footnotes it mentions 'googleapps.exe' - I don't have this and it has still worked. Simply follow the instructions below but close down...

View Article

Answer by rrudland for Mailto links do nothing in Chrome but work in Firefox?

I also experienced this issue, and eventually tracked it down to the fact that my link was within an iframe, and my web app uses https. Chrome was blocking it due to this (Chrome would open other...

View Article


Answer by Hiren Purohit for Mailto links do nothing in Chrome but work in...

You can use like this also,<a href="javascript:void(0);" onclick="javascript:window.location.href='mailto:info@example.com'; return false;">info@example.com</a>I think this is best way to...

View Article

Answer by Bharat Parmar for Mailto links do nothing in Chrome but work in...

Please check it this:This is working in chrome and all browser.<a href="mailto:test.test@gmail.com">Test</a>try and working in great.

View Article


Answer by fenix for Mailto links do nothing in Chrome but work in Firefox?

Another solution is to implement your own custom popup/form/user control that will be universally interpreted across all browsers.Granted this will not leverage the "mailto" out of the box...

View Article

Image may be NSFW.
Clik here to view.

Answer by Rajesh Hegde for Mailto links do nothing in Chrome but work in...

This is because chrome handles the mailto in different way. You can go to chrome://settings/handlers and make sure that which is the default handler. In your case it will be none (i.e. not listed). Now...

View Article


Answer by kennypu for Mailto links do nothing in Chrome but work in Firefox?

This is browser settings specific, i.e. it will behave differently depending on the user's browser settings. The user can change how mailto: links behave in chrome by visiting...

View Article

Answer by Yuriy Galanter for Mailto links do nothing in Chrome but work in...

You can try going to chrome://settings/handlers and set value for mailto: to none instead of gmail

View Article

Mailto links do nothing in Chrome but work in Firefox?

It seems like the mailto links we're embedding in our website fail to do anything in Chrome, though they work in Firefox.Simple example here: http://jsfiddle.net/wAPNH/<a...

View Article
Browsing all 20 articles
Browse latest View live