What CSS framework (if any) does SO use for mobile devices? Do they also use jQuery?

link|improve this question
What are you doing that you want this information? SO? GMail? Whats next? stackoverflow.com/questions/9199372/… – josh.trow Feb 8 at 18:41
Researching mobile frameworks. Anything wrong with that? – Brendan Vogt Feb 8 at 18:44
you can checkout their api api.stackexchange.com/docs – Dave Feb 8 at 18:50
feedback

migrated from stackoverflow.com Feb 8 at 18:45

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 2 down vote accepted

DIY

  1. Install user-agent switcher in FF
  2. Change user agent to iPhone
  3. Browse to SO
  4. 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">
link|improve this answer
Or click the 'mobile' link at the bottom of the page. – jjnguy Feb 8 at 21:37
@jjnguy how convenient – paislee Feb 8 at 21:39
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged