Hey guys,
Is there any way to force landscape on mobile sites?
I seen it on some mobile website... You get a message on Portrait Mode... 'Turn your device in Landscape Mode'
Let me know if guys know the code......
Thanks for your help.
<script type="text/javascript">
(function($) {
$(document).ready(function() {
if( $('window').width() < 450 ) {
alert( 'Turn your device in Landscape Mode' );
}
})(jQuery)
</script>