Skip to content

Instantly share code, notes, and snippets.

@Miroan
Miroan / Size-Picker.markdown
Created January 20, 2015 23:16
Size Picker
@Miroan
Miroan / JavaScriptRedirectMobile
Created May 9, 2011 22:55
Redirection to Mobile
<script type="text/javascript">
if (screen.width<800)
{
window.location="http://yourdomain.com/mobile/"
}
else
{
window.location="http://yourdomain.com/"
}
</script>