Downloading VCF file on iPhone browserHow can I develop for iPhone using a Windows development machine?How can I upload files asynchronously?How do I include a JavaScript file in another JavaScript file?iPhone: how to get safari to recognize a vcard?Get the size of the screen, current web page and browser windowHow to add vCard's base 64 string to vCalendarsafari upload csv file open a plain text in the browsernot able to download vcard on iphone ChromeNodeJS/ReactJS: Create downloadable file with string for mobile browserexporting .vcf contact in mobile web app capable aka HomeScreen app

Visualizing the difference curve in a 2D plot?

How would you translate "more" for use as an interface button?

How to test the sharpness of a knife?

Usage of an old photo with expired copyright

Language involving irrational number is not a CFL

Why is the Sun approximated as a black body at ~ 5800 K?

Do people actually use the word "kaputt" in conversation?

Isometric embedding of a genus g surface

PTIJ: Which Dr. Seuss books should one obtain?

Why Shazam when there is already Superman?

Can I run 125kHz RF circuit on a breadboard?

Why would five hundred and five be same as one?

Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?

Quoting Keynes in a lecture

How do I prevent inappropriate ads from appearing in my game?

Make a Bowl of Alphabet Soup

Does the Crossbow Expert feat's extra crossbow attack work with the reaction attack from a Hunter ranger's Giant Killer feature?

Unable to disable Microsoft Store in domain environment

Mimic lecturing on blackboard, facing audience

Is there a reason to prefer HFS+ over APFS for disk images in High Sierra and/or Mojave?

Has the laser at Magurele, Romania reached a tenth of the Sun's power?

What is the meaning of "You've never met a graph you didn't like?"

Why does the Persian emissary display a string of crowned skulls?

When and why was runway 07/25 at Kai Tak removed?



Downloading VCF file on iPhone browser


How can I develop for iPhone using a Windows development machine?How can I upload files asynchronously?How do I include a JavaScript file in another JavaScript file?iPhone: how to get safari to recognize a vcard?Get the size of the screen, current web page and browser windowHow to add vCard's base 64 string to vCalendarsafari upload csv file open a plain text in the browsernot able to download vcard on iphone ChromeNodeJS/ReactJS: Create downloadable file with string for mobile browserexporting .vcf contact in mobile web app capable aka HomeScreen app













2















I am trying to download a vcf file in my mobile web app, without hitting the server.



 function downloadVcf(filename, data) 
var element = document.createElement('a');
element.setAttribute('href', 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data));
element.setAttribute('download', filename);

element.style.display = 'none';
document.body.appendChild(element);

element.click();

document.body.removeChild(element);



The code above works very well while debugging on chrome browser with windows OS. Also it works perfectly fine on chrome browser on android phones. But it does not work on iPhone browser (safari). Instead of downloading the vcf file it opens the VCF file in browser. But it does have option for user to import it to other apps (contacts for instance). But what I want is to download the VCF file in user's iPhone.



Please help.










share|improve this question




























    2















    I am trying to download a vcf file in my mobile web app, without hitting the server.



     function downloadVcf(filename, data) 
    var element = document.createElement('a');
    element.setAttribute('href', 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data));
    element.setAttribute('download', filename);

    element.style.display = 'none';
    document.body.appendChild(element);

    element.click();

    document.body.removeChild(element);



    The code above works very well while debugging on chrome browser with windows OS. Also it works perfectly fine on chrome browser on android phones. But it does not work on iPhone browser (safari). Instead of downloading the vcf file it opens the VCF file in browser. But it does have option for user to import it to other apps (contacts for instance). But what I want is to download the VCF file in user's iPhone.



    Please help.










    share|improve this question


























      2












      2








      2








      I am trying to download a vcf file in my mobile web app, without hitting the server.



       function downloadVcf(filename, data) 
      var element = document.createElement('a');
      element.setAttribute('href', 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data));
      element.setAttribute('download', filename);

      element.style.display = 'none';
      document.body.appendChild(element);

      element.click();

      document.body.removeChild(element);



      The code above works very well while debugging on chrome browser with windows OS. Also it works perfectly fine on chrome browser on android phones. But it does not work on iPhone browser (safari). Instead of downloading the vcf file it opens the VCF file in browser. But it does have option for user to import it to other apps (contacts for instance). But what I want is to download the VCF file in user's iPhone.



      Please help.










      share|improve this question
















      I am trying to download a vcf file in my mobile web app, without hitting the server.



       function downloadVcf(filename, data) 
      var element = document.createElement('a');
      element.setAttribute('href', 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data));
      element.setAttribute('download', filename);

      element.style.display = 'none';
      document.body.appendChild(element);

      element.click();

      document.body.removeChild(element);



      The code above works very well while debugging on chrome browser with windows OS. Also it works perfectly fine on chrome browser on android phones. But it does not work on iPhone browser (safari). Instead of downloading the vcf file it opens the VCF file in browser. But it does have option for user to import it to other apps (contacts for instance). But what I want is to download the VCF file in user's iPhone.



      Please help.







      javascript iphone mobile-safari vcf






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 27 at 15:17







      Savaratkar

















      asked Feb 25 at 17:15









      SavaratkarSavaratkar

      1,3321629




      1,3321629






















          2 Answers
          2






          active

          oldest

          votes


















          2





          +50









          Setting document.location.href to the value of your data URI should work:



          function downloadVcf(data) 

          // build data url
          var url = 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data);

          // ask the browser to download it
          document.location.href = url;







          share|improve this answer


















          • 1





            I will try this method on iPhone browser and will inform the result. :)

            – Savaratkar
            Mar 6 at 9:04











          • Hello John, this solution is not working on iPhone browser safari. :(

            – Savaratkar
            Mar 7 at 10:40












          • Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

            – John Doherty
            Mar 7 at 11:14


















          1














          Since vCard Specification 4, the mime type text/x-vcard is deprecated. Only the mime type text/vcard (without x-) is valid. Check if iOS browsers do fail because of the mime type in the beginning of your data url.






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54871408%2fdownloading-vcf-file-on-iphone-browser%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2





            +50









            Setting document.location.href to the value of your data URI should work:



            function downloadVcf(data) 

            // build data url
            var url = 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data);

            // ask the browser to download it
            document.location.href = url;







            share|improve this answer


















            • 1





              I will try this method on iPhone browser and will inform the result. :)

              – Savaratkar
              Mar 6 at 9:04











            • Hello John, this solution is not working on iPhone browser safari. :(

              – Savaratkar
              Mar 7 at 10:40












            • Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

              – John Doherty
              Mar 7 at 11:14















            2





            +50









            Setting document.location.href to the value of your data URI should work:



            function downloadVcf(data) 

            // build data url
            var url = 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data);

            // ask the browser to download it
            document.location.href = url;







            share|improve this answer


















            • 1





              I will try this method on iPhone browser and will inform the result. :)

              – Savaratkar
              Mar 6 at 9:04











            • Hello John, this solution is not working on iPhone browser safari. :(

              – Savaratkar
              Mar 7 at 10:40












            • Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

              – John Doherty
              Mar 7 at 11:14













            2





            +50







            2





            +50



            2




            +50





            Setting document.location.href to the value of your data URI should work:



            function downloadVcf(data) 

            // build data url
            var url = 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data);

            // ask the browser to download it
            document.location.href = url;







            share|improve this answer













            Setting document.location.href to the value of your data URI should work:



            function downloadVcf(data) 

            // build data url
            var url = 'data:text/x-vcard;charset=utf-8,' + encodeURIComponent(data);

            // ask the browser to download it
            document.location.href = url;








            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 5 at 22:27









            John DohertyJohn Doherty

            1,2861117




            1,2861117







            • 1





              I will try this method on iPhone browser and will inform the result. :)

              – Savaratkar
              Mar 6 at 9:04











            • Hello John, this solution is not working on iPhone browser safari. :(

              – Savaratkar
              Mar 7 at 10:40












            • Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

              – John Doherty
              Mar 7 at 11:14












            • 1





              I will try this method on iPhone browser and will inform the result. :)

              – Savaratkar
              Mar 6 at 9:04











            • Hello John, this solution is not working on iPhone browser safari. :(

              – Savaratkar
              Mar 7 at 10:40












            • Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

              – John Doherty
              Mar 7 at 11:14







            1




            1





            I will try this method on iPhone browser and will inform the result. :)

            – Savaratkar
            Mar 6 at 9:04





            I will try this method on iPhone browser and will inform the result. :)

            – Savaratkar
            Mar 6 at 9:04













            Hello John, this solution is not working on iPhone browser safari. :(

            – Savaratkar
            Mar 7 at 10:40






            Hello John, this solution is not working on iPhone browser safari. :(

            – Savaratkar
            Mar 7 at 10:40














            Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

            – John Doherty
            Mar 7 at 11:14





            Sorry to hear that. Have you tried github.com/eligrey/FileSaver.js ?

            – John Doherty
            Mar 7 at 11:14













            1














            Since vCard Specification 4, the mime type text/x-vcard is deprecated. Only the mime type text/vcard (without x-) is valid. Check if iOS browsers do fail because of the mime type in the beginning of your data url.






            share|improve this answer



























              1














              Since vCard Specification 4, the mime type text/x-vcard is deprecated. Only the mime type text/vcard (without x-) is valid. Check if iOS browsers do fail because of the mime type in the beginning of your data url.






              share|improve this answer

























                1












                1








                1







                Since vCard Specification 4, the mime type text/x-vcard is deprecated. Only the mime type text/vcard (without x-) is valid. Check if iOS browsers do fail because of the mime type in the beginning of your data url.






                share|improve this answer













                Since vCard Specification 4, the mime type text/x-vcard is deprecated. Only the mime type text/vcard (without x-) is valid. Check if iOS browsers do fail because of the mime type in the beginning of your data url.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 22:07









                Christoph BimmingerChristoph Bimminger

                777221




                777221



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54871408%2fdownloading-vcf-file-on-iphone-browser%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

                    Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

                    How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page