ie-mobile

Programmatically Launch IE Mobile Favorites screen..

Is there any way to launch IEMobile's Favorites screen directly by specifying any command line parameter? ...

Can I capture Windows Mobile PIE keyboard events?

Anyone know of a way to capture keyboard events (keyup / keydown) in Portable IE under Window mobile? I noticed that key events are not supported in JS, and would like to come up with a solution that works without any client side additions. ...

How do I retrieve IPIEHTMLDocument2 interface on IE Mobile

I wrote an Active X plugin for IE7 which implements IObjectWithSite besides some other necessary interfaces (note no IOleClient). This interface is queried and called by IE7. During the SetSite() call I retrieve a pointer to IE7's site interface which I can use to retrieve the IHTMLDocument2 interface using the following approach: IUnkn...

Non-breaking non-space in HTML

I have a bowling web application that allows pretty detailed frame-by-frame information entry. One thing it allows is tracking which pins were knocked down on each ball. To display this information, I make it look like a rack of pins: o o o o o o o o o o Images are used to represent the pins. So, for the back row, I have 4 img...

How to make a simple site render correctly on multiple mobile browsers?

We have a rather simple site (minimal JS) with plain html and CSS. It is a simple mobile interface for our main application. We are running into trouble because we have more than one column and several browsers seem to force single columns. Through some searching I ran into 2 meta tags. <meta name="MobileOptimized" content="220" /> <...

Can I make IEMobile not strip the # from the URL of a redirect?

I am having an issue with IEMobile accessing my site. A certain redirect I use has a 302 response code, and the headers (yep, that's app-engine): Server Development/1.0 Python/2.5.2 Date Tue, 04 Nov 2008 16:47:02 GMT Content-Type text/html; charset=utf-8 Cache-Control no-cache Location http://localhost/games/...

Access parent's DOM from script in an iframe in IE Mobile

I have a framed window (currently iframe but may possibly be frame) - I do not have control over this. I would like to detect if my content is inside an iframe (or frame). I wanted to compare the location of the current document with the one the top object holds but it appears it is the same object (top === window). After extensive...

Alternative to 'className' in JavaScript for IE Mobile?

I'm working on a mobile web app that needs to work in IE Mobile. I've narrowed down a JavaScript error I'm getting to IE Mobile not supporting the 'className' property (IE4 engine...). I'm trying to find an alternative that works across all browsers with minimal code changes (I already have a few libraries that use 'className'). The eas...

IE Mobile: Can't connect due to error 0x80072f7c

We launched a website for mobile browsers, m.cozi.com, at the end of last year. We chose to provide a lowest-common denominator experience with static HTML and CSS, no JavaScript. It works well for most people, but some of our customers report connectivity problems. I really have no idea how to get any traction on them. Those who have p...

How to Add options to <SELECT>, in IE Windows Mobile 5

Trying to programmatically add options to a SELECT drop down in IE Windows Mobile. Because this is IE Windows Mobile 5, most solutions involving getElementID do not function, so I have had to resort to more plain vanilla HTML /Java script, the example below works fine in IE 6 and FF , but fails with "Object doesn't support this property...

Capture javascript event in IE Mobile

I need to detect the id of the element that generated an onchange event. This code work in most modern browsers: <input type="text" onchange="return onchange_handler(event);" function onchange_handler(event) { var id = event.target ? event.target.id : event.srcElement.id; ... return false; } But it does not work in IE Mo...

HTML Control in Windows Mobile 6.1 Professional

I have an application which hosts the WebBrowser control; it runs fine on WM5 and WM6. On my WM6.1 Professional device, I seem to not be able to control HTML elements with CSS. A page rendered in IEMobile does not behave the same in the control on the 6.1Pro device. On WM6 and 5, things are fine. Any suggestions? ...