I have a Ruby on Rails app which handles contacts. Now I want to give users the possibility to drag and drop cards on the page and create a contact this way.
By using the HTML5 file API I get the vcard contents in Javascript. So I thought: why even send a request to the server, why not parse it n Javascript?
Unfortunately I can’t find a library which does this. Can’t be too hard? Any ideas? I would really prefer this solution for simplicity and less hassle on the server side…
Thanks a lot,
Tom
I’ve done a quick serch for js vcard and found this vcard.js script. Hope this helps.