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
11
votes
2 answers

location redirect to "sms:123454" does not work on page load

Following is the code I have got for location redirect to SMS app when the user is on a mobile browser- window.onload = function() { window.location ="sms:12345?body=" + encodeURIComponent("TEST"); } This code works perfectly on JS fiddle when…
NetStarter
  • 3,189
  • 7
  • 37
  • 48
11
votes
3 answers

Let user that use mobile browser to send the code of product they want by SMS

I'm going to use a method to let user that use mobile browser to send the code of the product they want by SMS. Currently I use something like: Buy product-number23xx
osyan
  • 1,784
  • 2
  • 25
  • 54
10
votes
2 answers

How to Fetch Serial Number from Android Mobile Browser using Java Scripting which will be from web application source running in mobile browser

I can able to find UniqueId,Serial,IMEI,OS and IP Address from Android Mobile Native Application. But, I could not able to find the above device information via mobile browser app, which will be from web application source running in mobile…
harikrishnan
  • 1,985
  • 4
  • 32
  • 63
9
votes
1 answer

How to disable Camera option for file upload from mobile-browser?

I am using a file type input. It should accept pdf, doc and docx file formats. So I added the following input tag - This works as expected on desktop i.e. It shows only these files on file browser. But…
arthcp
  • 130
  • 8
9
votes
3 answers

Opening SMS app from feature phone's mobile browser?

Via HTML, is it possible to access/open the SMS app from a mobile browser? It's okay if the SMS is routed through the user's own mobile carrier (like normally), and is billed to the said user as well. I don't want to create my own SMS gateway to…
Hassan Baig
  • 15,055
  • 27
  • 102
  • 205
9
votes
2 answers

unable to access facebook app / fan page tab on mobile browser

I have created an app an that can be accessed by the desktop browser by following link like "https://apps.facebook.com/APP_NAME/". While I am running facebook on android mobile on google chrome browser going through https://m.facebook.com, I am not…
Chirag Shah
  • 1,463
  • 2
  • 18
  • 40
8
votes
2 answers

Linear gradient and url-image for browser mobile?

I would like to have an image as background and also a CSS linear gradient : background-image: url("/site/grigliatrasparente.png"), linear-gradient(left, #404040 0%, #dfbb80 2%,#dfbb80 98%,#404040 100%); I dont'have problems with desktop browser…
Borja
  • 3,359
  • 7
  • 33
  • 66
8
votes
1 answer

CSS mobile: box-shadow doesn't work correctly

When I've opened my site in chrome mobile v48, I've found that box-shadow: 1px property behaves weird: the width of the shadow is floating from side to side and ain't the same. I assume it because of fractional device pixel ratio 1.5: The next code…
WildDev
  • 2,250
  • 5
  • 35
  • 67
8
votes
3 answers

Is there any how I can test whether a mobile browser supports flash using web technology?

I know most mobile browsers don't support javascript, how can I check this?
user198729
  • 61,774
  • 108
  • 250
  • 348
8
votes
4 answers

CSS "position:fixed": mobile zoom

I'm trying to solve an issue with css "position:fixed" property on mobile browsers. I have a fixed div: with css: #logo{ position: fixed; -webkit-backface-visibility: hidden; bottom:…
user3098549
  • 1,171
  • 2
  • 13
  • 26
8
votes
2 answers

Do Mobile Browsers send httpOnly cookies via the HTML5 Audio-Tag?

I try to play some mp3 files via the html5 audio-tag. For the desktop this works great (with Chrome), but when it comes to the mobile browsers (also Chrome (for Android)), there seem to be some difficulties: I protected the stream with some password…
JepZ
  • 1,159
  • 14
  • 27
8
votes
6 answers

Open the native browser from an android app

I have an android phone with multiple browsers installed and I might or might not set a browser to default. So, my question is.. From my App, How do I force open a link only in the NATIVE android browser? Is there a way I can know if there is a…
defactodeity
  • 714
  • 1
  • 8
  • 21
7
votes
3 answers

Does html5 support touch on mobile phones?

I was wondering if html5 is supporting touch functionality on a mobile device native? So we don't have to make an native app for iOS/Android/WP7 but can make an html5 page which loads in the mobile browser. EDIT I mean the JavaScript support for…
Wessel Kranenborg
  • 1,400
  • 15
  • 38
7
votes
3 answers

Prevent Android chrome from going idle / auto-locking / sleeping phone?

I need to do on the website some feature to disabled idle/sleep phone. Does anyone try make this on phone with android ? is it in any way possible?
AdamM
  • 163
  • 1
  • 1
  • 9
7
votes
2 answers

Detect Mobile Browser Close Event

Is there any way to detect mobile browser close event? I need to forcefully delete a cookie on browser close. I have already tried my luck with window.onbeforeunload and window.unload but they doesn't work for mobile browsers. Search on the web a…
Ankur Aggarwal
  • 2,993
  • 5
  • 30
  • 56
1
2
3
27 28