This approach is the key to get things right on mobile. Because of its roots, common web development focuses on desktop first and mobile second. This usually means that we do: `loadContent(); if mobile: loadMobileContent();`. Instead we should build for mobile first and load desktop content when we encounter one: `loadContent(); if desktop: loadDesktopContent();`
iaskwhy|13 years ago
nissimk|13 years ago
An application like linked in should not require a native app. The website should just work well in a mobile browser.