View Single Post
Old 09-21-2012, 08:25 PM   PM User | #3
Rcoleman25
New Coder

 
Join Date: Jun 2012
Posts: 18
Thanks: 8
Thanked 0 Times in 0 Posts
Rcoleman25 is an unknown quantity at this point
Quote:
Originally Posted by Sammy12 View Post
Yes, with regards to basic functionality, it is a substitute. It's also known as a mobile-version (similar to Facebook, Twitter, etc). You have to remember to target various screen sizes though.

-320 x 480 of course, iPhone, iPad, Android, etc. You would need to target these with @media queries:

Code:
@media screen and (min-width: 321px) and (max-width: 480px) {

}
... you need more


No, I don't believe you can. You cannot access a user's location unless there was a security warning. I don't think older phones support geolocation, I remember it was in modernizr. In Safari, you get a security pop up when a website is trying to access your location.

From the geolocation link:



Browser Support Chart: http://caniuse.com/geolocation (take a look at the mobile support)
Thanks for the quick reply... so I could essentially have a mobile site and then build an app SIMILAR to the mobile site with a geolocation feature... not all of my customers for the business will need the geolocation.
Rcoleman25 is offline   Reply With Quote