My application is powered by jQuery mobile and uses geolocation.
After my application attempts to get the user’s location, the (Chrome) browser prompts the user:
Example.com wants to track your physical location [allow] [deny]
My goal is:
- If the user clicks “Allow”, function 1 is called (location is used
by app). - If the user clicks “Deny”, function 2 is called (address form
appears).
How can I bind a function to the event that occurs (if any) when the user clicks the “Allow” or “Deny” button?
The
getCurrentPositionfunction accepts two function arguments. Heck, the first is executed when you allow and the other when you deny!Documentation
http://jsfiddle.net/pimvdb/QbRHg/