What happened to the mailto function in Safari 6?

Here's my code:
<A HREF="mailto:[email protected]">[email protected]</a>
When you click on the link, rather than the user being directed to a new session in their email app with the email address in the "to" field, this just opens up a new page in Safari, which of course doesn't help anybody.
I've poked around the internet and brought this up in different forums and have yet to come up with a bottom line.
I've never had this problem before prior to installing Mountain Lion and being introduced to Safari 6. What do I have to do with my code to make it compatible with Safari 6?

BTW: This is the page that inspired all of this mess: http://newhopeforyou.com/small_group_display.php?class_id=31
I don't know what the problem could be, but I can trace it back to the installation of Mountain Lion and Safari 6. Both great pieces of technology, but this email thing is something I've got to figure out!

Similar Messages

  • What happened to the browse function in the iTunes store?

    What happened to the browse function in the iTunes store?

    What do you mean what happened to it ? If you are having problems with the store then what are they ?

  • What happened to the search function on ipads?

    what happened to the search function on ipads?

    Ok, I agree it USED TO WORK that way, swiping down from the center. Now swiping down from the center with the newest CRAP iOS 7.0.4, all that happens is the notifications tab pulls down.
    I can see all the options for Spotlight Search in the General Setup, and have all of the search options enabled, but the old way (2 weeks ago) of getting the search pane DOESN'T WORK ANYMORE.
    Anyone have a clue where it went, or how to get it back, or enable it, or anything?  SIRI is clueless too. I say "Open Spotlight Search". She says "You don't seem to have an app named Spotlight Search"
    I can tell SIRI to open one of my 150+ apps WHEN ONLINE, but if I'm flying or out of wi-fi, and want to search my iPad, I need the spotlight search pane!!!

  • What happen to the avatars in Yosemite Safari?

    What happen to the colorful avatar logos for bookmarks in Safari? It was replaced by a gray bookmark. It was easier to find the logo of the company link.

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • What happened to the downloads tab in safari - yosemite?

    Cant seem to find the downloads tab that used to be in the upper right hand corner near the link bar in os x yosemite?

    One possibility is that there are no files in the Downloads, or that the Safari list has been cleared.  What happens if you download something - does the tab appear?
    Also, in the View menu there is a command "Show Downloads" you might try.

  • What happened to the Activity window in Safari?

    there is no more Activity window in Safari.  What happened and how can I geet it back?

    In Safari 6 in preferences you navigate to the advanced menu and click on the "Show develop menu in menu bar" and you should be able to see much of what is in the page. It certainly is not what we are used to and there are certainly a number of strange changes i am not sure developers have tested on the average user before implementing.

  • What happened to the task functionality in OS Maverick?

    Just upgraded to OSMaverick, and lost all my tasks in the calendar function.  Is it there and I'm just missing it, or did Apple foolishly eliminate this basic calendar function?

    You need to use Reminders instead.
    https://discussions.apple.com/message/23599091#23599091
    Reminders is located in your Applications folder.

  • What happened to the autocomplete function  in numbers?

    In previous versions where I was entering text in a worksheet, it would offer to complete what I was typing based on previous cells.  This used to save a lot of time.  Now it seems to hav ve no memory of that and I have to type it all.

    This is just one of the very latest annoying changes that Apple have made to Numbers. Just how much of my time do Apple intend wasting when then intoduce new versions of an application. I spent a silly amount of time trying to find out how I switched on the auto complete function only to eventually discover that Apple for reasons best know to them have got rid of it.
    Has anybody discovered a workaround please?
    Feedback has been sent to Apple.

  • What happened to the dock icon in safari 6.04

    The most recent Mountain Lion update included Safari 6.04. All of a sudden the dock icon looks as bad as google's chrome. When using the magnify option it pixelates all ugly. Did we finally sell out? Is this the way Tim is going to run things? Someone needs to get the axe for this!

    Boot in safe mode. This will cause certain caches maintained by the system to be rebuilt.
    Safe mode is much slower to boot than normal.
    When the login screen appears, reboot as usual (not in safe mode) and test. There's no need to log in while in safe mode.
    Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.

  • What happened to the " street view " function in the maps app in iOS6?

    What happened to the "street view" function in the maps app of iOS6?

    Gary ~ It's now available via a browser:
    Street View for Google Maps web app goes live

  • What happened to the "Block Popup Windows" menu item in Safari 6?

    What happened to the "Block Popup Windows" menu item in Safari 6?  Seems to be gone.

    Shheesh!  Loki is saying that this was a very useful tool/option.  Is there any way to BRING IT BACK TO THE SAFARI MENU?  Not how to do it in Preferences.
    What I am saying is: What incompetent is responsible for this build of Safari?  There was no reason to take that out... plenty of room in the Safari menu.  But if you REALLY want to know why I'm ******, Older people can no longer go into "Appearances" and change the Fonts and Size without knowing how to use terminal or how to make .css files.  (which doesn't work well anyway)
    This build is infuriating.

  • Pipeline functions - what happens under the hood?  (10g)

    Hi all,
    What happens when you call a pipelined function? (As opposed to a plain table-valued function.)
    From what I understand, a pipelined function will return rows as they are needed. Let's say I have a really silly example of a pipelined function,
    CREATE OR REPLACE PACKAGE BODY TEST_PACKAGE_1
    AS
        FUNCTION GET_DATA RETURN JUST_A_TABLE PIPELINED
        IS
        BEGIN
            PIPE ROW (JUST_A_TYPE('HELLO'));
            PIPE ROW (JUST_A_TYPE('WORLD'));
            RETURN;
        END;
    END TEST_PACKAGE_1;
    /Then let's say I were to SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM = 1, what happens to the second row? Does the code that returns the second row still get educated? (Obviously it's omitted from the query, but does it still get generated somewhere and just go nowhere?)
    If I have a cursor on a PL/SQL block that selects from GET_DATA, will each row only be returned as the cursor references it? In that case, what happens to the rows that don't get selected? If there some resource that need to be closed out (say, just before the return statement), would it still be safe to close it out?
    Thanks!
    Don

    Interesting question, lets try a simple test and see we'll just take your example function and toss in a few dbms_output statements like so:
    CREATE OR REPLACE PACKAGE BODY TEST_PACKAGE_1
    AS
        FUNCTION GET_DATA RETURN JUST_A_TABLE PIPELINED
        IS   
        BEGIN
            dbms_output.put_line('ONE');
            PIPE ROW (JUST_A_TYPE('HELLO'));       
            dbms_output.put_line('TWO');
            PIPE ROW (JUST_A_TYPE('WORLD'));       
            dbms_output.put_line('THREE');
            RETURN;   
        END;
    END TEST_PACKAGE_1;Now not forgetting to enable dbms_output call it three times like so:
    SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM = 1;
    SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM <= 2;
    SELECT * FROM TABLE(TEST_PACKAGE_1.GET_DATA) WHERE ROWNUM <= 3;What I saw from my test was that with the first call I got 1 row of data from the pipelined function and only the first dbms_output statement was processed. For the second statement I got 2 rows of data from the function and the first two dbms_output statements were processed. For the final call I again got 2 rows of data from the function and all 3 dbms_output statements were processed.
    My environment:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

  • What happened to the soft proof function for printing???

    What happened to the soft proof function for printing???

    Edward Sozinho wrote:
    Thanks Jim.  It's no longer located there.  I miss spoke I'm running Lightroom CC now.
    Then you must not be seeing the toolbar. Press the letter T to display the toolbar. I'm using Lightroom CC.

  • Safari 6. What happened to the action "Email Link" ?

    Using Mountain Lion. Safari 6. What happened to the action "Email Link" ?

    option click your tool bar in Safari,   and add the icon that looks like a mail icon (letter icon) to your tool bar...
    it is also in the file menu and there is a quick key assignment...

  • Just upgraded to  Safari 6, What happened to the "Empty Cache" option?

    JUST CURIOUS, WHAT HAPPENED TO THE "EMPTY CACHE" OPTION IN SAFARI 6?

    Go to safari preference/advance and add the develop drop down menu. Empty cache is there.

Maybe you are looking for

  • OpenSource Dev World - What should I consider?

    I'm planning to make an very simple Pacman Update Indicator for KDE. So spoken a KDE Widget written in QML and the DataEngine in C++ So searching for a lib, I found the ALPM and the pacman tarball as a great resource of information. I read the `LICEN

  • Shell of macbook pro starts to be convex and uneven after 3weeks

    As title. Moreover I found that the display is definitely NOT new. Hate to buy from apple store. Better switch to Amazon folks. Amazon offers a better costumer serivce.

  • Importing Photos from Pictures Album revisited

    Quite a while ago, I posted a question about my Aperture's lack of ability to import from the "Pictures" folder. http://discussions.apple.com/thread.jspa?threadID=1540299&tstart=0 I took a close look today, and I solved the problem. I noticed that wh

  • Oracle report builder 6i rich text filed

    Hi all, Is it possible to print rich text using report builder 6i. I have  column that store a text in rtf format, can i print the formatted rich text? Best regards,

  • Order of file script

    Hi experts, my req is i have one file this file contains lot table structure(100 tables dependence) after that how to validate the order of table structure iam prepared the script for single file with single table but my req is multiple tables struct