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
2
votes
1 answer

Mobile Redirect not working

I got this JavaScript code off of http://detectmobilebrowser.com/, but it doesn't redirect my phone's browser to the proper page. I put it in the index.htm file, which should branch off to main.htm or miniMain.htm depending on the browser using it,…
Ky -
  • 30,724
  • 51
  • 192
  • 308
2
votes
0 answers

How to hide the address bar in Ionic 4 (web platform) in mobile browser?

I had built a website using ionic4 and angular. But I have faced a big problem when I load it on mobile browser: when I scroll in the browser the address bar of the browser does not hide. But on the normal website which is built without ionic…
2
votes
0 answers

Ajax request works in mobile Safari console, but not in code

I have the following jQuery code which performs a simple request: $.ajax({ type: "POST", url: "/wp-admin/admin-ajax.php", headers: { "pragma": "no-cache", "cache-control": "no-cache", }, data: payload, function(response) { …
Abs
  • 1,726
  • 2
  • 17
  • 28
2
votes
0 answers

How to display Google Photos album in the mobile browser?

I'm developing client-side React app. The application should display gallery of photos from Google Photos. I'm using Firebase to store a short url to album (f.e. https://photos.app.goo.gl/[ALBUM_ID] and an album's title. Then I request the url and…
LadyHail
  • 91
  • 1
  • 5
2
votes
1 answer

HTML5 Geolocation for IE8 and Mobile Browsers

So I have been developing a web application, and I have implemented the HTML5 geolocation feature. I have implemented this using Javascript code taken from Google's website, that interacts with the Google Map that I have on my page as well. Here is…
slandau
  • 23,528
  • 42
  • 122
  • 184
2
votes
1 answer

background video play using youtube iframe player API

I have used Youtube iframe player API to show playlist and play youtube videos with youtube id in my web application which is built using angular <4, everything is perfect while playing playlist in desktop browser but if I open my web app in mobile…
2
votes
1 answer

Strange CSS ''overlay effect'' on Mobile Browsers

I've just learned to make animation with CSS. On Desktop Chrome everything is OK. But when I checked it out on Chrome for Android - there's some strange overlay effect when clicking. Code .btn { -webkit-appearance: none; -moz-appearance:…
2
votes
1 answer

Client-side Speech Recognition on a mobile browser?

I am working on a project that is targeted for browsers on smart phones. And I can't seem to find any way to do a client-side speech recognition, as the mobile version of chrome doesn't even support their own Web Speech API. Does anybody know how to…
2
votes
1 answer

keypress/keyup is not working on chrome mobile browser

I have been using jquery in my web based Asp.net MVC application, and when i use chrome mobile to test my work i found that jquery's functions which are based upon keypress/keyup is not working. I didn't know why it is not working on mobile…
wild coder
  • 880
  • 1
  • 12
  • 18
2
votes
0 answers

"touchend" event partly not working on iphone mobile browser

On the mobile version of the website I have made, I use a javascript file to handle the tap of a user to open up the side display. What I wanted to do was if a user presses the side display it should expand, if the touch area is not the side…
Andrew Serra
  • 153
  • 14
2
votes
0 answers

What could cause a text input to sometimes be un-selectable for mobile browsers?

GOAL: Make a chat-interface which works on desktop also work on mobile. PROBLEM: I've thrown together a chatbot proof-of-concept. Everything is very simple, including the JS & CSS. While I'm also having a separate issue with CSS, I suspect this…
mOrloff
  • 2,547
  • 4
  • 29
  • 48
2
votes
0 answers

CSS/JS to imitate multiple mobile app screens: left-to-right orientation, one-at-a-time behavior

I am working on a Flask / Vue.js web app that I want to have work well with both laptop and mobile browsers. The layout I've chosen is to have a series of mobile-screen-shaped areas that are oriented in a left-to-right fashion when viewed on a…
Nathan Wailes
  • 9,872
  • 7
  • 57
  • 95
2
votes
0 answers

AJAX call not working in some mobile Chrome browsers

This is the jQuery code $( "input#go" ).click(function() { if($("input#datepicker").val()!="") { $.ajax( { method: "POST", url: "http://acoroster.rf.gd/roster.php", data: { date : $("input#datepicker").val()}, …
2
votes
1 answer

Is a Firebase Notification Received for a web app running on a mobile browser in the background?

The natural way to use Firebase on mobile is using Android or iOS. However, I'm in this situation where a client who developed a web app wants to receive push notifications when: The web app runs on a mobile browser The mobile browser app is in…
Mike
  • 1,296
  • 2
  • 15
  • 40
2
votes
2 answers

Context menu event hiding mouse up on android

I have an image and I need to measure how long user touch the image or has mouse pressed on the image. So I use mouse down event to to get the start time and mouse up event to get the finish time. However, when running on android device, the long…
Mikhail Chibel
  • 1,865
  • 1
  • 22
  • 34