What CSS framework (if any) does SO use for mobile devices? Do they also use jQuery?
-
What are you doing that you want this information? SO? GMail? Whats next? stackoverflow.com/questions/9199372/…josh.trow– josh.trow02/08/2012 18:41:40Commented Feb 8, 2012 at 18:41
-
Researching mobile frameworks. Anything wrong with that?Brendan Vogt– Brendan Vogt02/08/2012 18:44:01Commented Feb 8, 2012 at 18:44
-
you can checkout their api api.stackexchange.com/docsuday– uday02/08/2012 18:50:32Commented Feb 8, 2012 at 18:50
Add a comment
|
1 Answer
DIY
- Install user-agent switcher in FF
- Change user agent to iPhone
- Browse to SO
- CTRL+U
JS:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://cdn.sstatic.net/js/stub.js?v=3c808850d245"></script>
<script type="text/javascript" src="http://cdn.sstatic.net/js/mobile.js?v=c58294e4b2d6"></script>
CSS:
<link rel="stylesheet" type="text/css" href="http://cdn.sstatic.net/skins/mobile/all.css?v=691d8c3ee5fa">
-
Or click the 'mobile' link at the bottom of the page.02/08/2012 21:37:16Commented Feb 8, 2012 at 21:37
-