How works mobile sites? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How works mobile sites?

How does work that, we go to full (PC version) domain and our smartphones load mobile version. For example, tapping www.youtube.com but the browser load www.m.youtube.com. That happend on the server or client side? It is some special script, file or what?

23rd Jul 2017, 10:01 AM
Michał Baran
Michał Baran - avatar
3 Answers
+ 18
As far as i know it can be easily done with Javascript detecting the User Agent, there are plugins like "User Agent Switcher" that allow you to visit the mobile version of websites like youtube, in PC too. Chris Coyer made an article here: http://bit.ly/2tRESPu Another (more extensive) reference: http://bit.ly/2uUHJfo Just remember that Javascript is a client-side language and can be deactivated by the user. ;)
23rd Jul 2017, 10:22 AM
Maz
Maz - avatar
+ 3
basically the web server detects the user agent u r using and automatically toggles the site
23rd Jul 2017, 10:17 AM
Мг. Кнап🌠
Мг. Кнап🌠 - avatar
+ 2
There are several ways(code) to detect user browser, using JavaScript, or php.. This an example of using php : <?php $browser = get_browser(null, true); if ($browser['ismobiledevice']) {     header('Location: http://m.web_name.com/'); } else { header('Location: http://www.web_name.com/'); } ?>
23rd Jul 2017, 10:57 AM
Mugfirfauzy Siregar
Mugfirfauzy Siregar - avatar