Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using jQuery mobile to create a mobile site and I'm using the standard fb:// link to open the Facebook App when a user clicks on the link to our page.

In an Objective C App I developed in the past, there is code that can check if the application is present on the phone. If it isn't present, it sends you to the http:// version of the site (into Safari).

Is this possible to do with jQuery Mobile?

share|improve this question

1 Answer

You could try performing an AJAX request for "head" to that URL. See what happens.

$.ajax({
    type: "HEAD",
    url: 'fb://somelink',
    success: function(data) {
        console.log(data);
    }
});

The HEAD request type simply returns http headers rather than a complete page. Perhaps this might work.

http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.