Tagged Questions

1
vote
1answer
896 views

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 ...
1
vote
3answers
904 views

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 ...
1
vote
3answers
2k views

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 ...
1
vote
2answers
2k views

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 ...