Questions tagged [mobile-browser]

A mobile browser is a web browser designed for use on a mobile device such as a mobile phone or PDA.

A mobile browser is a web browser designed for use on a mobile device such as a mobile phone or PDA. It also called a microbrowser, minibrowser, or wireless internet browser (WIB) that are optimized so as to display Web content most effectively for small screens on portable devices. Mobile browser software must be small and efficient to accommodate the low memory capacity and low-bandwidth of wireless handheld devices. Typically they were stripped-down web browsers, but as of 2006 some mobile browsers can handle more recent technologies like CSS 2.1, JavaScript, and Ajax.

417 questions
3
votes
1 answer

How to detect an in-app browser in iphone and android?

I'm working on a mobile site right now. But it performs a little bit different in a normal mobile browser and an in-app browser(when you scan the QR code or click a link in a social network app, for example). I use…
chaonextdoor
  • 5,019
  • 15
  • 44
  • 61
3
votes
0 answers

Can I disable only double-tap zoom and not pinch zoom?

I am making a game in Javascript, therefore it can be played on a computer or a mobile web browser. It is perfect on the computer, but it requires a lot of clicking. When I use a mobile web browser, this is sometimes interpreted as a double-tap and…
tckmn
  • 57,719
  • 27
  • 114
  • 156
3
votes
0 answers

Screen Brightness Available to mobile browsers?

Is the device's brightness level available to the browser? I found this - http://mzl.la/SSBobX - but I'm not sure that this article is valid anymore as I can't find anything in the screen object or in the settings it refers to. Is there a…
William
  • 1,517
  • 1
  • 12
  • 26
3
votes
0 answers

Mobile browsers zoom in too much

I'm building my first mobile website. To ensure the site fills the screen appropriately I have set However, on my phone (Android 4.2.1) only Opera Mobile zooms in and fills…
Marcos
  • 1,117
  • 1
  • 8
  • 9
3
votes
4 answers

Need a good mobile phone simulator

I am developing a mobile website using asp.net mvc 4 for the first time. A few pages are already developed. Now I need to test this website. Can please somebody let me know which is the best simulator? If something is available such that I can test…
user1400290
  • 1,682
  • 5
  • 23
  • 43
2
votes
2 answers

How to access local server on a PC using Opera Mobile

I am trying to test my website on Opera Mobile on my PC. But I am not able to connect to the local server using the mobile browser. Could any one of you tell me what all settings need to be changed in order to make this thing work? Your answers will…
2
votes
0 answers

Bing browser App on Android can't handle firebase dynamic links URL

When I open the URL created on firebase dynamic links via Bing browser App on Android, It seems like Bing App can't handle the link and shows a blank screen. Bing Android Image The URL works on iOS or other browser apps. And it doesn't work on…
2
votes
2 answers

Copy to Clipboard - Clipboard.setData() - Broken on Flutter Web for iOS Browsers (Safari & Chrome)

Clipboard.setData(ClipboardData(text: textToCopy)); is working fine on flutter web when visiting via desktop browsers, but is nonfunctional on mobile (iOS Chrome & Safari). Are there any work arounds? I've tried a few other packages besides the…
2
votes
0 answers

How can i open google calendar app with pre-filled details from mobile browser?

How can I open the google calendar app with pre-filled details e.g title, recurring, etc from the mobile browser? I used the link below and it's not…
Abhishek Jain
  • 971
  • 3
  • 13
  • 18
2
votes
0 answers

What css property will cause the URL bar on Chrome android browser to auto hide?

If you go to twitter.com on the Android Chrome browser and scroll up, then the address bar will auto hide itself to make more room for the webpage. My app used to do this. But now I am not sure what I tweaked to make this no work. The main div of…
2
votes
1 answer

Delphi Intraweb: Is there a way to open an url in a new tab without the popup behavior?

In an Intraweb (VCL for the web) mobile web application I need to redirect the user to a java webapp. I specify that is a java webapp to stress the fact that it is a completely different thing compared to the intraweb webapp. I would like to achieve…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
2
votes
3 answers

Deep linking not working in chrome mobile browser

I am facing issue of deeplink. We have created a deep link for mobile application post but at google chrome mobile browser, its not opening the app screen. I saw same issues with amazon app deep links also. At very first load it did not open app but…
Amit H
  • 21
  • 1
  • 3
2
votes
0 answers

Why does a WASM based web application work with desktop Chrome, not mobile Chrome on Android?

A WASM based web app built with Uno-Platform (a.k.a. Silverlight on Steroids) works with the desktop Chrome flawlessly, but it always crashes with the mobile Chrome on Android with the following screen: The main file dotnet.wasm is 82 MB, but it is…
Hong
  • 17,643
  • 21
  • 81
  • 142
2
votes
1 answer

How to track keyup/keydown events in Javascript in iPhone

How to track keyup/keydown events in Javascript in iPhone browsers, basically I need to move the focus automatically to next form element once the end user has keyed-in maximum no of characters in a text box.
Shan
  • 521
  • 2
  • 8
  • 28
2
votes
0 answers

Storage event not triggering on iphone browsers(chrome and safari) until tab is focused

Using ReactJS. creating 2 components to explain the issue. Sample code: chrome browser window 1: https://localhost:5000/home componentDidMount(){ function callme(){ if (event.key == "1000") { console.log("triggerred from another window"); …