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

learn more… | top users | synonyms

0
votes
0answers
16 views

Sticky headers for mobile browser

I am making a sticky header that works on a touch screen, using hammer.js for touch gestures: scrollEvent: function () { Hammer('.desktop', { drag_block_horizontal: true, ...
0
votes
0answers
17 views

Get UDID on IOS device browser by php or javascript

Any one can help to get UDID of IOS device on mobile browser by php , javascript or jquery, HTML ..? How to get compare UDID with provisioning profile ? I don't have any more idea relate IOS ...
0
votes
0answers
31 views

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 ...
0
votes
0answers
76 views

WindowsPhone8 IE10 viewport scroll issue

I have my windows phone layout xaml as follows: <Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="*"/> ...
0
votes
0answers
16 views

Get geolocation heading in mobile browsers

I found many many examples of Geolocation API, many mentioning heading, which is the direction the user or device is pointing in degrees (from 0, which I assume is North, to 359). I tried some code ...
0
votes
0answers
25 views

Adsense content ads (text & images) are not showing on mobile browsers (iPhone & Android)

I'm not able to view google ads on iPhone browser, whereas they appear fine on desktop browsers. Please visit this url http://appzyz.mobi/kemalski in you desktop & mobile browsers. Mobile browser ...
0
votes
0answers
44 views

Youtube API - iFrame / unknown filetype on mobile browsers?

I'm confused. I'm working with the youtube api to display some most viewed videos from a youtube channel as thumbnails and play them on click in a video player. In my first version I used the ...
0
votes
0answers
19 views

Different pages centered differently on mobile browser

Just went live with a site today. For reasons that are not apparent to me, some pages of the site are taking up the width of the mobile browser, but others go wider than the mobile browser window ...
1
vote
0answers
73 views

Touchend not firing after touchmove on android 4.x?

I am writing some code with javascript just like this: var el = document.getElementById('some-div'); el.ontouchstart = function(e){ el.innerHTML = "touch start"; }; ...
1
vote
1answer
60 views

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 ...
1
vote
1answer
44 views

How to hide android browser's scroll bar without disabling the scroll functionality?

I want to hide mobile browser's scroll bar using either css or js. ::-webkit-scrollbar { display: none; } This css works on desktop browser chrome, but doesn't work on mobile chrome. When a ...
1
vote
1answer
59 views

How do webservers reliably determine the device that is sending requests?

I've recently noticed that some websites that I visit are capable of detecting the device that I am using to view the website but I'm not sure how they are able to do that. For example, www.rdio.com, ...
0
votes
2answers
168 views

Get GPS Location of Mobile Phone [duplicate]

I have been looking around Google and SO for a way to get the GPS location of a user using a mobile phone with PHP. However, the only solutions I have found use Javascript, and I would rather not have ...
0
votes
1answer
91 views

Google Analytics PHP API (GAPI) non-mobile browsers

I am trying to display the top 5 of non-mobile browsers with GAPI. I can't seem to find a way of doing this, is this even possible? This is how I get the percentage of mobile visits: ...
-1
votes
2answers
18 views

how server serves website different on mobile and laptop [closed]

How server gives diffrent thing on laptop browser and on mobile browser.. like gmail looks different on laptop and in android browser.. How it works
-3
votes
2answers
196 views

Can we have add-ons(FireFox) or extensions(Chrome) in the mobile browsers [Android or iPhone]

Can we have add-ons(FireFox) or extensions(Chrome) in the mobile browsers like how we are using them with web browsers. Can we do the following things: Install an extension or plugin or add-on in ...
0
votes
0answers
42 views

Donation link mobile browser issue- Android Java?

I have a free Android app on the Play Store with roughly 15,000 downloads, so I thought it would be a good idea to add a donate feature. I have set up an activity with a button that launches an intent ...
0
votes
1answer
55 views

Call an Android service from mobile browser

I have to start a service when user click on a button from a web page. I know it is possible to do that with an Activity by adding this in the manifest : <activity android:name="MyActivity" ...
0
votes
0answers
31 views

html text elements in mobile browser looks narrow

I've got a problem with a website. I'm trying to make it compatible with mobile browsers. The text elements such as h1 ,h2, p look narrow on Android devices (on iOS it seems to work properly) instead ...
0
votes
0answers
84 views

How to change default search engine with JS api on android platform?

How to change default search engine with JS api on android platform? we could set default search engine on iphone, not manually. But wonder how to do this on android.
0
votes
1answer
49 views

Is it OK to use rem for mobile website design

I am wondering if it is a good idea to use rem in my mobile website. Doing so makes life a lot easier but I don't have any older devices to test on and I can't find any clear information on support in ...
2
votes
0answers
166 views

Headphone Phone Jack Credit Card Swipe with Browser App

We want to accept credit card swipes via iPhone and Android phones but cannot find any devices that connect via the headphone jack that will populate a field in the phone's browser. This is very easy ...
1
vote
1answer
206 views

Bootstrap typeahead with virtual keyboard doesn't work properly

I have a problem with Typeahead when I'm using mobile Phones and Tablets with virtual keyboard. When I tap the typeahead control (a html input), the virtual keyboard appears and I can input a query ...
0
votes
0answers
41 views

Are there mobile browsers that do not support hardware acceleration for Canvas but for CSS3?

I heard a rumor, that hardware acceleration in a mobile browser is running for CSS3 but not for the Canvas element. Is that true? If so, are there sources for that?
1
vote
1answer
108 views

CSS style override doesn't work on mobile browsers

Here's my code in a css. It's overriding a style written in the HTML file. I don't have access to change the HTML. body[style] { background-color: yellow !important ; background: solid; } ...
2
votes
0answers
134 views

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

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, ...
1
vote
1answer
438 views

Audio Recording(Accessing microphone) using HTML5 in mobile browsers

Can we access microphone of mobile to record our voice using HTML5? I was trying this link: http://www.html5rocks.com/en/tutorials/getusermedia/intro/ where I get < input type="file" ...
0
votes
4answers
566 views

Overflow-x:hidden doesn't prevent content from overflowing in mobile browsers

I have a website here. Viewed in a desktop browser, the black menu bar properly extends only to edge of the window, since the body has overflow-x:hidden. In any mobile browser, whether Android or ...
0
votes
2answers
325 views

Android is sending 2 requests to download one file via mobile browser

That is really happening. I made test in PHP to confirm this. I created a test.php file and put: <?php error_log('Downloading...'); header('Content-type: application/force-download'); ...
0
votes
2answers
92 views

two different versions of website mobile and desktop

When I go into ibm both in website and mobile I see two different links http://www.ibm.com/us/en/ http://m.ibm.com/us/en/ How iphone detects mobile version? http://m.ibm.com/us/en/ I'am working ...
0
votes
0answers
86 views

bookmark for mobile web browser using javascript

Is there any way to create a bookmark using javascript for mobile browsers? We have this functionality for desktop browsers like for IE we have window.sidebar.addPanel() etc. I googled it, but could ...
1
vote
0answers
93 views

iPhone/iPad inner shadow and animations

The page is work in progress: https://student.sps-prosek.cz/~eisead11it/web/E-Shop/E-shop I have two problems I can't figure out: The shadow around the big table (more precisely it is inner shadow ...
0
votes
0answers
35 views

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 ...
0
votes
1answer
516 views

Selection and highlighting of text in iphone/ipad web browser safari not working

Possible duplicate: Change CSS of selected text using Javascript I tried the code from above link but not getting the result for iPad browser to highlight the selected text. function ...
0
votes
0answers
92 views

Jquery Sticky Plugin broken on Mobile browser

I recently adapted the jQuery plugin, 'Sticky,' for my companies WordPress site. The plugin itself is strictly jQuery, and not WordPress specific. While the plugin works great for desktop browsers, ...
1
vote
1answer
91 views

Mobile browsers zoom in too much

I'm building my first mobile website. To ensure the site fills the screen appropriately I have set <meta name="viewport" content="width=device-width, initial-scale=1" /> However, on my ...
1
vote
2answers
395 views

Check if Browser Supports HTML5 timepicker

I built a time mask in JavaScript which works great for PC's, Macs, iPhones, and iPads, but doesn't work consistently in most Android phones (I'd prefer not to get into the details of why this ...
0
votes
0answers
79 views

Virtual keyboard turn portrait to landscape mode

I have a site that changes its layout depending on the orientation of the device. However, when there is a form in the page and the user focus on the text field, the virtual keyboard will pops up and ...
1
vote
0answers
68 views

Recording and uploading video in mobile browser using device's camera

An application is being developed in asp.net mvc3 along with jQuery. Recording and uploading video has been done using Flash object and jquery plugin for uploading altogether in desktop browsers. ...
1
vote
1answer
145 views

Numeric keypad in Windows Phone 7.5 browser

How to bring the numeric keypad in webpage which is opened in Windows Phone 7.5 browser and i am able to do it in android webkit browser and iphone safari using the code like, <input ...
0
votes
1answer
384 views

Play HTML5 video in fullscreen if the command from server is play

I have a database field which has different commands set to it. For e.g play, pause and stop. The client webpage loops for the command to be play. If the command is play it calls another function call ...
2
votes
2answers
29 views

Dragging the div without dragging the whole browser(mobile browser)

I did a draggable div on the mobile browsers with touchstart, touchmove and touchend, but i have one problem. When I drag the div, the whole screen is moving, how can I do that when I am touching the ...
1
vote
1answer
70 views

Google Adsense on Iphone's browser display issues. '-webkit-text-size-adjust' for google adsense on iphone browser

I am having display issues with google adsense on Iphone browers. Title becomes smaller; descrption becomes larger, etc.. Is there a way I can implement '-webkit-text-size-adjust: none;' to Google ...
0
votes
1answer
119 views

How to install Weinre in windows7

Please help me in installing and debugging my mobile htmls from my machine using weinre.Lot of guys telling me how useful weinre is, but i am unable to find the way how to install it, please help me ...
0
votes
1answer
95 views

How to prevent page jump up when open soft keyboard on mobile browser?

I'm studying mobile web app. How to prevent page jump up when open soft keyboard on mobile browser?
4
votes
1answer
1k views

Lightbox not playing nice with mobile device

Lightbox is awesome on the pc. However, the situation is: I've been getting various complaints from Android and iPhone owners about Lightbox on their mobile devices about how they are unable to zoom ...
0
votes
2answers
34 views

Mobile html shortcuts

I'd like to know what are the shortcuts (href codes) that bring up different functionalities on different devices. e.g. mailto: (opens the mail clients on a desktop/mobile) tel: brings up the ...
0
votes
1answer
297 views

Create static horizontal scrolling

I'm trying to develop an horizontal scrolling for a landing page. I'm trying information that I found here. But I want to make something similar, but not exactly that... In that Web page, we have two ...
0
votes
3answers
188 views

How can I detect mobile browsers without checking HTTP headers?

Before telling me that the question have been asked earlier only with after reading my title, read further. I would like to know the best way to detect mobile browser without sniffing the headers for ...
0
votes
1answer
212 views

Looking for a cross-mobile browser compatible way to record from a built in microphone?

I want to make a very simple web app that takes the audio signal from the phone's microphone and varies some simple graphics on the page in as near to real-time as possible. I'd prefer the app to be ...

1 2 3